#!/bin/sh
JOURNAL=/opt/postinstalle/20250831.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/dhcp_manager

#1
echo .:1:. TELECHARGEMENT .:.
echo Vous pourrez consulter le journal des telechargements : /opt/postinstalle/20250831.log
cd /opt/postinstalle/dhcp_manager
# Le fichier http://www.jurastick.fr/files/rpms/e-smith-dhcpmanager-1.5-1.noarch.rpm n'est pas disponible
# Le fichier http://www.jurastick.fr/files/rpms/perl-Net-Ping-2.24-1.i386.rpm n'est pas disponible
# Le fichier http://www.jurastick.fr/files/rpms/wol-0.6.0-3.i386.rpm n'est pas disponible

#2
echo .:2:. INSTALLATION .:.
echo dhcp_manager
cd /opt/postinstalle/dhcp_manager
rpm -Uvh wol-*.i386.rpm
rpm -Uvh perl-Net-Ping-*.i386.rpm
rpm -Uvh e-smith-dhcpmanager-*.noarch.rpm

echo FIN : `date '+%D %Hh%M:%S'`
Fermer