--- lib/PXElator/config.pm 2009/08/04 18:20:45 143 +++ lib/PXElator/config.pm 2009/08/19 18:10:37 270 @@ -6,12 +6,31 @@ use server; use pxelinux; +use client; use File::Slurp; +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; @@ -25,16 +44,19 @@ =cut sub webconverger { - my $ip = shift; + my ($ip) = @_; upstream::iso( 'http://download.webconverger.com/webc-5.2.iso' ); + my $homepage = client::conf( $ip => 'homepage', default => "http://${server::ip}:7777/client" ); + my $hostname = client::conf( $ip => 'hostname' ) || 'webconverger'; + pxelinux::config_for_ip( $ip, qq{ default webconverger label webconverger kernel iso/live/vmlinuz-2.6.30-backports.1-486 - append initrd=iso/live/initrd.img-2.6.30-backports.1-486 fetch=http://172.16.10.1:7777/webconverger/iso/live/filesystem.squashfs boot=live quiet homepage=http://172.16.10.1:7777/ nonetworking nosudo splash video=vesa:ywrap,mtrr vga=788 nopersistent username=webc hostname=webconverger union=aufs + append initrd=iso/live/initrd.img-2.6.30-backports.1-486 fetch=http://${server::ip}:7777/webconverger/iso/live/filesystem.squashfs boot=live quiet nosudo splash video=vesa:ywrap,mtrr vga=788 nopersistent username=webc hostname=$hostname union=aufs homepage=$homepage locale=hr }); @@ -63,11 +85,71 @@ }); } +sub tinycore { + my $ip = shift; + upstream::iso( 'http://distro.ibiblio.org/pub/linux/distributions/tinycorelinux/2.x/release/tinycore_2.2.iso' ); + pxelinux::config_for_ip( $ip, qq{ + +default linux +label linux + kernel iso/boot/bzImage + append initrd=iso/boot/tinycore.gz + + }); +} + +sub nfsroot { + my $ip = shift; + + my $nfsroot = "$server::base_dir/tftp/nfsroot"; + my $debian_mirror = server::conf_default( 'debian_mirror', 'http://ftp.debian.org/debian' ); + + 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 sh -x /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; -# debian_live($ip); - webconverger($ip); -# debirf($ip); + my $deploy = client::conf( $ip => 'deploy', default => 'webconverger' ); + eval $deploy . '($ip)'; # $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix"; }