Subversion Repositories ALCASAR

Rev

Rev 497 | Blame | Last modification | View Log

#!/bin/sh
# $Id: alcasar-urpmi.sh 509 2011-03-16 23:06:13Z richard $
# script de mise en place des dépots RPM 
# 3abtux & rexy


VERSION="2010.2"
ARCH="i586"
#                       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"
MIRROR_NBR=2

rpm_repository_sync ()
{
echo ${!MIRRORLIST}
urpmi.removemedia -a
urpmi.addmedia --wget --probe-synthesis --mirrorlist ${!MIRRORLIST} main /media/main/release
urpmi.addmedia --wget --update --probe-synthesis --mirrorlist ${!MIRRORLIST} main_updates /media/main/updates
urpmi.addmedia --wget --probe-synthesis --mirrorlist ${!MIRRORLIST} contrib /media/contrib/release
urpmi.addmedia --wget --update --probe-synthesis --mirrorlist ${!MIRRORLIST} contrib_updates /media/contrib/updates
}

# extract the current Mandriva version and hardware architecture (i586 ou X64)
fic=`cat /etc/product.id`
old="$IFS"
IFS=","
set $fic
for i in $*
do
        if [ "`echo $i|grep version|cut -d'=' -f1`" == "version" ]
        then 
                CURRENT_VERSION=`echo $i|cut -d"=" -f2`
                if [ $CURRENT_VERSION != "2009.0" ] && [ $CURRENT_VERSION != "2009.1" ] && [ $CURRENT_VERSION != "2010.0" ] && [ $CURRENT_VERSION != "2010.1" ] && [ $CURRENT_VERSION != "2010.2" ] 
                then
                      echo "La migration automatique du système ne peut être réalisée."
                      echo "Réalisez une mise à jour manuelle (cf. doc)."
                      echo "The automatic system update can't perform."
                      echo "Do a manual update (see doc)."
                exit 1          
                fi
        fi
        if [ "`echo $i|grep arch|cut -d'=' -f1`" == "arch" ]
        then 
                ARCH=`echo $i|cut -d"=" -f2`
        fi
done
IFS="$old"
# Set the RPM repository
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
                        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'"
                        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
# download RPM in cache 
echo "Récupération des paquetages de mise à jour. Veuillez patienter ..."
echo "Updated RPM download. Please wait ..."
echo "Il est temps d'aller prendre un café :-) "
echo "You should now take a Beer ;-) "
urpmi --downloader wget --auto --auto-update --quiet --test --retry 2
if [ "$?" != "0" ]
then
        echo
        echo "Une erreur a été détectée lors de la récupération des paquetages."
        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 "An error occurs when downloading"
        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'"
        exit 1
fi
# update with cached RPM
urpmi --auto --auto-update
# cleaning
urpme --auto --auto-orphans
exit 0