Subversion Repositories ALCASAR

Rev

Rev 941 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log

#!/bin/sh
# $Id: alcasar-urpmi.sh 838 2012-03-14 22:56:41Z richard $

# alcasar-urpmi.sh
# by Franck BOUIJOUX and Richard REY
# This script is distributed under the Gnu General Public License (GPL)

# script de mise en place des dépots RPM 
# configure the RPM repository

VERSION="2010.2"
TO_ARCH="i586 x86_64" 
# ****** Alcasar needed RPMS - paquetages nécessaires au fonctionnement d'Alcasar ******
PACKAGES="freeradius freeradius-mysql freeradius-ldap freeradius-web apache-mpm-prefork apache-mod_ssl apache-mod_php squid dansguardian postfix MySQL logwatch ntp awstats buffer vim-enhanced bind-utils arpscan ulogd openssh-server php-xml php-ldap pam_ccreds rng-utils lsb-release dnsmasq sudo syslinux cronie-anacron pciutils clamav pm-fallback-policy "

rpm_repository_sync ()
{
cat <<EOF > /etc/urpmi/urpmi.cfg
{
downloader: wget
}
EOF
urpmi.addmedia --probe-synthesis --mirrorlist ${!MIRRORLIST} main /media/main/release
urpmi.addmedia --update --probe-synthesis --mirrorlist ${!MIRRORLIST} main_updates /media/main/updates
urpmi.addmedia --probe-synthesis --mirrorlist ${!MIRRORLIST} contrib /media/contrib/release
urpmi.addmedia --update --probe-synthesis --mirrorlist ${!MIRRORLIST} contrib_updates /media/contrib/updates
}

rpm_error ()
{
echo
echo "Relancez l'installation ultérieurement."
echo "Si vous rencontrez à nouveau ce problème, modifier les variables MIRRORLIST[1&2] du fichier 'scripts/alcasar-urpmi.sh'"
echo "Try an other install later."
echo "If this problem occurs again, change the MIRRORLIST[1&2] variables in the file 'scripts/alcasar-urpmi.sh'"
}

# We prefer wget than curl
urpmi --no-verify-rpm --auto wget

# Clean the RPM cache
urpmi --clean

for ARCH in $TO_ARCH
do
    # Set the RPM repository
    MIRROR_NBR=2
    #                       For french ALCASARistes
    MIRRORLIST1="http://ftp.free.fr/pub/Distributions_Linux/MandrivaLinux/official/$VERSION/$ARCH"
    #                       For International install
    MIRRORLIST2="http://api.mandriva.com/mirrors/basic.$VERSION.$ARCH.list"
    try_nb="0"; nb_repository="0"
    while [ "$nb_repository" != "4" ]
    do
            try_nb=`expr $try_nb + 1`
            MIRRORLIST="MIRRORLIST$try_nb"
            rpm_repository_sync 
            nb_repository=`cat /etc/urpmi/urpmi.cfg|grep mirrorlist|wc -l`
            if [ "$nb_repository" != "4" ]
            then
                    echo "Une erreur a été détectée lors de la synchronisation avec le dépot N°$try_nb."
                    echo "An error occurs when synchronising the repositories N°$try_nb"
                    if [ $(expr $try_nb) -eq $MIRROR_NBR ]
                    then
                            rpm_error
                            exit 1
                    fi
                    echo "Voulez-vous tenter une synchronisation avec un autre dépôt?"
                    echo "Do you wan't to try a synchronisation with an other repository?"
                    response=0
                    PTN='^[oOnNyY]$'
                    until [[ $(expr $response : $PTN) -gt 0 ]]
                    do
                            read response
                    done
                    if [ "$response" = "n" ] || [ "$response" = "N" ] 
                    then
                            exit 1
                    fi
            fi
    done
    
    urpmi --auto --auto-update --quiet --test --retry 2 --download-all /tmp/$ARCH 
  
    if [ "$?" != "0" ]
    then
            echo
            echo "Une erreur a été détectée lors de la récupération des paquetages."
            echo "An error occurs when downloading RPMS"
            rpm_error
            exit 1
    fi
  
done
  
exit 0