3 # setup script that is only run once at boot time
5 echo "Creating the nfsroot for FAI."
8 . /etc/fai/make-fai-nfsroot.conf
10 if [ ! -d "$FAI_CONFIGDIR/class" ]; then
11 mkdir -p $FAI_CONFIGDIR
12 cp -a /usr/share/doc/fai-doc/examples/simple/* $FAI_CONFIGDIR
16 dhclient eth0 # connection to the outside world (hopefully)
17 ip addr add 192.168.1.250 dev eth0 # (fixed address of faiserver)
18 /etc/init.d/nscd restart
19 /etc/init.d/apache2 restart
21 fai-setup -v 2>&1 | tee /var/log/fai-setup.log
23 # create default pxelinux boot configuration (boot from local disk)
26 echo "Log files are saved to /var/log/fai-setup.log"