--- lib/PXElator/config.pm 2009/08/04 13:19:08 135 +++ lib/PXElator/config.pm 2009/08/05 23:53:24 154 @@ -8,17 +8,7 @@ use pxelinux; use File::Slurp; -sub shared { - my ($name, $value) = @_; - - my $path ="$server::base_dir/conf/$server::ip/$name"; - if ( defined $value ) { - write_file $path, $value; - } else { - $value = read_file $path if -e $path; - } - return $value; -} +sub available { qw/debian_live webconverger debirf tinycore/ }; sub debian_live { $dhcpd::file = "pxelinux.0"; @@ -26,51 +16,75 @@ $pxelinux::config_file = 'pxelinux.cfg/default'; } -use LWP::Simple qw/mirror RC_NOT_MODIFIED/; +use upstream; + +=head1 webconverger + +Webconverger - the opensource Web Kiosk + +L + +=cut + sub webconverger { - $dhcpd::file = "pxelinux.0"; - $pxelinux::path_prefix = 'webconverger/'; + my ($ip) = @_; + + upstream::iso( 'http://download.webconverger.com/webc-5.2.iso' ); + + my $homepage = server::shared( "$ip/homepage" ) || "http://${server::ip}:7777/client"; + my $hostname = server::shared( "$ip/hostname" ) || 'webconverger'; + + pxelinux::config_for_ip( $ip, qq{ - my $dir = "$server::base_dir/tftp/$pxelinux::path_prefix"; +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 nosudo splash video=vesa:ywrap,mtrr vga=788 nopersistent username=webc hostname=$hostname union=aufs homepage=$homepage - mkdir $dir unless -d $dir; + }); - my $cfg = "$dir/pxelinux.cfg"; - return 1 if -e $cfg; +} - mkdir $cfg; +=head1 debirf - my $iso = '/srv/pxelator/iso/webc-5.2.iso'; - my $url = 'http://download.webconverger.com/webc-5.2.iso'; +debirf is a system that will create diskless, all-in-ram images (kernel and initramfs) that boot entirely into ram and leave the user in a fully functional Debian system. - print STDERR "mirror $url"; - mirror( $url, $iso) - == RC_NOT_MODIFIED - && warn(" not modified\n") - || warn(" done ", -s $iso, " bytes\n") - ; +L - mkdir "$dir/iso" unless -e "$dir/iso"; +=cut - system "mount -t iso9660 | grep webc-5.2 || sudo mount $iso $dir/iso/ -o loop -t iso9660 -v"; +sub debirf { + my $ip = shift; - symlink "/usr/lib/syslinux/pxelinux.0", "$dir/$dhcpd::file"; + upstream::iso( 'http://cmrg.mayfirst.org/debirf/debirf-rescue_lenny_2.6.26-1-686.iso' ); - $cfg .= '/default'; + pxelinux::config_for_ip( $ip, qq{ - write_file $cfg, qq{ -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/pxelator/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 - }; +default linux +label linux + kernel iso/vmlinuz-2.6.26-1-686 + append initrd=iso//debirf-rescue_lenny_2.6.26-1-686.cgz + + }); +} + +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 -# $pxelinux::config_file = $cfg; + }); } sub for_ip { my $ip = shift; -# debian_live(); - webconverger(); + my $deploy = server::shared( "deploy/$ip" ) || 'webconverger'; + eval $deploy . '($ip)'; # $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix"; }