--- lib/PXElator/config.pm 2009/08/03 20:53:46 129 +++ lib/PXElator/config.pm 2009/08/16 23:45:29 236 @@ -2,51 +2,109 @@ use warnings; use strict; +use autodie; use server; use pxelinux; +use client; 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"; - $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; + +=head1 webconverger + +Webconverger - the opensource Web Kiosk + +L + +=cut + sub webconverger { - $dhcpd::file = "pxelinux.0"; - $pxelinux::path_prefix = 'webconverger/'; -# $pxelinux::config_file = 'default'; + my ($ip) = @_; - return; # FIXME + upstream::iso( 'http://download.webconverger.com/webc-5.2.iso' ); - my $cfg = "$tftp::dir/pxelinux.cfg"; - return if -e $cfg; + my $homepage = client::conf( $ip => 'homepage', default => "http://${server::ip}:7777/client" ); + my $hostname = client::conf( $ip => 'hostname' ) || 'webconverger'; - warn "using iso"; -# system "mount -t 9660 | grep webc-5.2 || sudo mount /srv/pxelator/iso/webc-5.2.iso /srv/pxelator/tftp/webconverger/iso/ -o loop -t iso9660 -v"; + pxelinux::config_for_ip( $ip, qq{ - symlink "/usr/lib/syslinux/pxelinux.0", "$tftp::dir/$dhcpd::file"; +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://${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 + + }); } +=head1 debirf + +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. + +L + +=cut + +sub debirf { + my $ip = shift; + + upstream::iso( 'http://cmrg.mayfirst.org/debirf/debirf-rescue_lenny_2.6.26-1-686.iso' ); + + pxelinux::config_for_ip( $ip, qq{ + +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 + + }); +} + sub for_ip { my $ip = shift; -# debian_live(); - webconverger(); + my $deploy = client::conf( $ip => 'deploy', default => 'webconverger' ); + eval $deploy . '($ip)'; # $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix"; } +warn 'loaded'; + 1;