--- lib/PXElator/config.pm 2009/08/16 23:45:29 236 +++ lib/PXElator/config.pm 2009/08/19 17:01:57 268 @@ -9,7 +9,7 @@ use client; use File::Slurp; -sub available { qw/debian_live webconverger debirf tinycore/ }; +sub available { qw/debian_live webconverger debirf tinycore nfsroot/ }; sub debian_live { my ($ip) = @_; @@ -97,6 +97,53 @@ }); } + +sub nfsroot { + my $ip = shift; + + my $nfsroot = "$server::base_dir/tftp/nfsroot"; + + if ( ! -e $nfsroot ) { + system "apt-get install nfs-kernel-server debootstrap"; + + if ( ! -e $nfsroot ) { + mkdir $nfsroot; + system "debootstrap --arch i386 lenny $nfsroot http://ftp.hr.debian.org/debian"; + } + + write_file "$nfsroot/tmp/configure.sh", qq{ +echo "do_initrd = Yes" > /etc/kernel-img.conf + +# apt-get install kernel-image-686 +apt-get install atl2-modules-2.6-686 +echo atl2 >> /etc/initramfs-tools/modules + +cat /etc/initramfs-tools/initramfs.conf | sed 's/BOOT=local/BOOT=nfs/' > /tmp/initramfs.conf \ + && mv /tmp/initramfs.conf /etc/initramfs-tools/initramfs.conf + +update-initramfs -u -v + +}; + + system "chroot $nfsroot /tmp/configure.sh"; + + open(my $exports, '>>', '/etc/exports'); + print $exports "$nfsroot\t$server::ip/$server::netmask(rw,async,no_root_squash,no_subtree_check)\n"; + close($exports); + + system "exportfs -rva"; + + } + + pxelinux::config_for_ip( $ip, qq{ + +default nfsroot +label nfsroot + kernel vmlinuz + append initrd=initrd.img root=/dev/nfs nfsroot=$server::ip:$nfsroot ro ip=dhcp + + }); +} sub for_ip { my $ip = shift;