--- lib/PXElator/config.pm 2009/08/13 12:02:43 212 +++ lib/PXElator/config.pm 2009/08/19 17:01:57 268 @@ -9,12 +9,28 @@ 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 { - $dhcpd::file = "pxelinux.0"; - $pxelinux::path_prefix = 'live-helper/tftpboot/'; - $pxelinux::config_file = 'pxelinux.cfg/default'; + my ($ip) = @_; + + upstream::files( qw{ + http://cdimage.debian.org/cdimage/release/current-live/i386/web/ + vmlinuz1 + initrd1.img + debian-live-501-i386-standard.squashfs + }); + + my $hostname = client::conf( $ip => 'hostname' ) || 'debian-live'; + + pxelinux::config_for_ip( $ip, qq{ + +default debian_live +label debian_live + kernel vmlinuz1 + append initrd=initrd1.img fetch=http://${server::ip}:7777/debian_live/debian-live-501-i386-standard.squashfs boot=live nopersistent hostname=$hostname union=aufs + }); + } use upstream; @@ -81,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;