X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Ffiles%2Fetc%2Frc2.d%2FS99fai-setup%2FFAISERVER;fp=etc%2Fgrml%2Ffai%2Fconfig%2Ffiles%2Fetc%2Frc2.d%2FS99fai-setup%2FFAISERVER;h=0000000000000000000000000000000000000000;hb=de6d7ed3e096db257ca1434c895ff69e3b0ef481;hp=2d1568f20f7d52184f68962f6e61846c7cc6addd;hpb=229a51dfda4d619c47fb4b0ff94d4d952f61e62a;p=grml-live.git diff --git a/etc/grml/fai/config/files/etc/rc2.d/S99fai-setup/FAISERVER b/etc/grml/fai/config/files/etc/rc2.d/S99fai-setup/FAISERVER deleted file mode 100755 index 2d1568f..0000000 --- a/etc/grml/fai/config/files/etc/rc2.d/S99fai-setup/FAISERVER +++ /dev/null @@ -1,29 +0,0 @@ -#! /bin/bash - -# setup script that is only run once at boot time - -echo "Creating the nfsroot for FAI." - -. /etc/fai/fai.conf - -if [ ! -d "$FAI_CONFIGDIR/class" ]; then - mkdir -p $FAI_CONFIGDIR - cp -a /usr/share/doc/fai-doc/examples/simple/* $FAI_CONFIGDIR -fi - -# setup network -dhclient eth0 # connection to the outside world (hopefully) -ifconfig eth0:1 192.168.1.250 # (fixed address of faiserver) -/etc/init.d/nscd restart -/etc/init.d/apache2 restart -/etc/init.d/apt-proxy restart - -fai-setup -v 2>&1 | tee /var/log/fai-setup.log - -# create default pxelinux boot configuration (boot from local disk) -fai-chboot -o default - -echo "Log files are saved to /var/log/fai-setup.log" - -# remove me -rm $0