--- lib/PXElator/config.pm 2010/01/03 01:19:50 463 +++ lib/PXElator/config.pm 2010/07/21 15:35:09 506 @@ -14,7 +14,10 @@ our $mounted; -sub available { qw/katalog debian_live webconverger debirf tinycore nfsroot openvz printer wrt/ }; +our $server; +our $server_ip; + +sub available { qw/katalog debian_live webconverger debirf tinycore nfsroot openvz printer wrt clonezilla ubuntu freedos/ }; sub debian_live { my ($ip) = @_; @@ -33,7 +36,7 @@ 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 noprompt + append initrd=initrd1.img fetch=http://$server_ip:7777/debian_live/debian-live-501-i386-standard.squashfs boot=live nopersistent hostname=$hostname union=aufs noprompt }); } @@ -56,16 +59,16 @@ my $hostname = client::conf( $ip => 'hostname' ) || 'webconverger'; my $homepage = client::conf( $ip => 'webconverger/homepage' - , default => "http://${server::ip}:7777/client" ); + , default => "http://$server_ip:7777/client" ); my $fetch = client::conf( $ip => 'webconverger/fetch' - , default => "http://${server::ip}:7777/webconverger/iso/live/filesystem.squashfs" ); + , default => "http://$server_ip:7777/webconverger/iso/live/filesystem.squashfs" ); 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=$fetch boot=live quiet nosudo splash video=vesa:ywrap,mtrr vga=788 nopersistent username=webc hostname=$hostname union=aufs homepage=$homepage locale=hr noprompt + append initrd=iso/live/initrd.img-2.6.30-backports.1-486 fetch=$fetch boot=live quiet nosudo splash video=vesa:ywrap,mtrr vga=788 nopersistent username=webc hostname=$hostname union=aufs homepage=$homepage locale=hr noprompt kioskresetstation=10 }); @@ -76,7 +79,7 @@ $mounted->{"webconverger/$ip"} ||= upstream::iso( 'http://download.webconverger.com/webc-5.5.iso' ); my $hostname = client::conf( $ip => 'hostname' ) || 'katalog'; my $homepage = client::conf( $ip => 'webconverger/homepage' => "http://koha.ffzg.hr" ); - my $fetch = client::conf( $ip => 'webconverger/fetch' => "http://${server::ip}:7777/webconverger/custom.squashfs" ); + my $fetch = client::conf( $ip => 'webconverger/fetch' => "http://$server_ip:7777/webconverger/custom.squashfs" ); pxelinux::config_for_ip( $ip, qq{ @@ -124,6 +127,61 @@ }); } +sub clonezilla { + my $ip = shift; + upstream::iso( 'http://sourceforge.net/projects/clonezilla/files/clonezilla_live_alternative_testing/clonezilla-live-20100503-lucid.iso/download' ); + pxelinux::config_for_ip( $ip, qq{ + +default linux +label linux + kernel iso/live/vmlinuz + append initrd=iso/live/initrd.img boot=live union=aufs noswap noprompt vga=788 fetch=http://$server_ip:7777/clonezilla/iso/live/filesystem.squashfs + + }); +} + +sub ubuntu { + my $ip = shift; + upstream::iso( 'http://mirrors.us.kernel.org/ubuntu-releases/lucid/ubuntu-10.04-desktop-i386.iso' ); + + my $export = "$server::base_dir/tftp/ubuntu/iso"; + my $exported = `exportfs | grep $export`; + if ( $exported ne $export ) { + warn "exportfs $exported\n"; + system "sudo exportfs -i -o rw,async,no_root_squash,no_subtree_check,fsid=999 $ip:$export"; + } + pxelinux::config_for_ip( $ip, qq{ + +default linux +label linux + kernel iso/casper/vmlinuz + append initrd=iso/casper/initrd.lz boot=casper netboot=nfs nfsroot=$server_ip:$export -- + + }); +} + +sub freedos { + my $ip = shift; + + my $dir = "$server::base_dir/tftp/freedos"; + mkdir $dir unless -e $dir; + + symlink '/usr/lib/syslinux/memdisk', "$dir/memdisk" unless -e "$dir/memdisk"; + + my $floppy = 'freedos.img'; + + upstream::mirror_file 'http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/unofficial/balder/balder10.img' => "$dir/$floppy"; + + pxelinux::config_for_ip( $ip, qq{ + +default freedos +label freedos + kernel memdisk + append initrd=freedos.imz + + }); +} + sub in_chroot { my ( $dir, $command ) = @_; write_file "$dir/tmp/inside.sh", $command; @@ -182,7 +240,11 @@ } - my $server = server::as_hash_for $ip; + my $exported = `exportfs | grep $export`; + if ( $exported ne $export ) { + warn "exportfs $exported\n"; + system "sudo exportfs -i -o rw,async,no_root_squash,no_subtree_check,fsid=999 $ip:$export"; + } my $hostname = client::conf( $ip => 'hostname' ) || 'nfsroot'; file::replace "$export/etc/hostname", $hostname; @@ -218,9 +280,10 @@ sub for_ip { my $ip = shift || return; + $server = server::as_hash_for $ip; + $server_ip = $server->{ip} || die "no server ip"; my $config = client::conf( $ip => 'config' ) || return; - eval $config . '($ip)'; -# $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix"; + eval $config . '($ip)'; # must be last } warn 'loaded';