#!/bin/sh JOURNAL=/opt/postinstalle/20241204.log WGET=/usr/bin/wget WGET_OPT=-q -nc -T 60 -Y off -C off -a $JOURNAL echo DEBUT : `date '+%D %Hh%M:%S'` #0 echo .:0:. CREATION DES REPERTOIRES .:. mkdir -p /opt/postinstalle/yum_sme_6.0.1 #1 echo .:1:. TELECHARGEMENT .:. echo Vous pourrez consulter le journal des telechargements : /opt/postinstalle/20241204.log cd /opt/postinstalle/yum_sme_6.0.1 # Le fichier http://www.jurastick.fr/files/rpms/yum-1.0.3-7sme03.noarch.rpm n'est pas disponible # Le fichier http://www.jurastick.fr/files/rpms/rpm-python-4.0.4-7x.18.i386.rpm n'est pas disponible #2 echo .:2:. INSTALLATION .:. echo yum_sme_6.0.1 cd /opt/postinstalle/yum_sme_6.0.1 rpm -ivh rpm-python-4.0.4-7x.18.i386.rpm rpm -ivh yum-1.0.3-7sme03.noarch.rpm echo FIN : `date '+%D %Hh%M:%S'` |