memdisk.image which can be specified as symlink into tftp dir
[pxelator] / lib / PXElator / config.pm
index cce9310..18969a5 100644 (file)
@@ -8,12 +8,16 @@ use server;
 use pxelinux;
 use client;
 use file;
+use ssh;
 
 use File::Slurp;
 
 our $mounted;
 
-sub available { qw/debian_live webconverger debirf tinycore nfsroot/ };
+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) = @_;
@@ -32,7 +36,7 @@ sub debian_live {
 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
+       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
        });
 
 }
@@ -50,22 +54,43 @@ L<http://webconverger.org/>
 sub webconverger {
        my ($ip) = @_;
 
-       $mounted->{"webconverger/$ip"} ||= upstream::iso( 'http://download.webconverger.com/webc-5.2.iso' );
+       $mounted->{"webconverger/$ip"} ||= upstream::iso( 'http://download.webconverger.com/webc-5.5.iso' );
 
-       my $homepage = client::conf( $ip => 'homepage', default => "http://${server::ip}:7777/client" );
        my $hostname = client::conf( $ip => 'hostname' ) || 'webconverger';
 
+       my $homepage = client::conf( $ip => 'webconverger/homepage'
+               , default => "http://$server_ip:7777/client" );
+       my $fetch    = client::conf( $ip => 'webconverger/fetch'
+               , 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=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
+       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
 
        });
 
 }
 
+sub katalog {
+       my ($ip) = @_;
+       $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" );
+
+       pxelinux::config_for_ip( $ip, qq{
+
+default katalog
+label katalog
+       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
+
+       });
+
+}
 =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. 
@@ -102,6 +127,66 @@ label linux
        });
 }
 
+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 $image = client::conf( $ip => 'memdisk.image' );
+
+       if ( ! $image ) {
+               $image = 'freedos.gz';
+               upstream::mirror_file 'http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/unofficial/balder/balder10.imz' => "$dir/$image";
+       } else {
+               $image =~ s{^.+/tftp/freedos/}{} && warn "using $image\n";
+       }
+
+       pxelinux::config_for_ip( $ip, qq{
+
+default freedos
+label freedos
+       kernel memdisk
+       append initrd=$image
+
+       });
+}
+
 sub in_chroot {
        my ( $dir, $command ) = @_;
        write_file "$dir/tmp/inside.sh", $command;
@@ -111,6 +196,9 @@ sub in_chroot {
 sub nfsroot {
        my $ip = shift || die "no ip?";
 
+       my $dist = 'lenny';
+       $dist = 'squeeze';
+
        my $nfsroot = "$server::base_dir/tftp/nfsroot";
        my $debian_mirror = server::conf_default( 'debian_mirror', 'http://ftp.debian.org/debian' );
 
@@ -123,14 +211,19 @@ sub nfsroot {
 
        if ( ! -e $debootstrap ) {
 
-               system "sudo debootstrap --arch i386 lenny $debootstrap $debian_mirror";
+               system "sudo debootstrap --arch i386 $dist $debootstrap $debian_mirror";
 
-               file::append "$debootstrap/etc/kernel-img.conf", "do_initrd = Yes\n" &&
-               in_chroot     $debootstrap => 'apt-get install -y --force-yes atl2-modules-2.6-686';
-               in_chroot     $debootstrap => 'apt-get -f install -y --force-yes locales';      # linux-image-2.6-686
+               file::append "$debootstrap/etc/apt/sources.list.d/non-free.list", "deb $debian_mirror $dist non-free\n";
+               in_chroot     $debootstrap => 'apt-get update';
 
+               file::append "$debootstrap/etc/kernel-img.conf", "do_initrd = Yes\n";
+               in_chroot     $debootstrap => 'apt-get -f install -y --force-yes locales linux-image-2.6-686 firmware-bnx2';
+
+               # this can fails on some distros, so we run it alone
+               in_chroot     $debootstrap => 'apt-get install -y --force-yes atl2-modules-2.6-686';
                file::append "$debootstrap/etc/initramfs-tools/modules", "atl2\n";
-               file::change("$debootstrap/etc/initramfs-tools/initramfs.conf",  'BOOT=local' => 'BOOT=nfs' ) &&
+
+               file::change "$debootstrap/etc/initramfs-tools/initramfs.conf",  'BOOT=local' => 'BOOT=nfs';
                in_chroot     $debootstrap => 'update-initramfs -u';
 
        }
@@ -152,11 +245,17 @@ sub nfsroot {
        
        }
 
+       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;
        file::replace "$export/etc/hosts", "127.0.0.1\tlocalhost $hostname\n";
-       file::replace "$export/etc/resolv.conf", "domain $server::domain_name\nnameserver $server::ip\n";
-       file::replace "$export/etc/rsyslog.d/pxelator.conf", "*.*\t\@$server::ip\n";
+       file::replace "$export/etc/resolv.conf", "domain $server->{domain}\nnameserver $server->{ip}\n";
+       file::replace "$export/etc/rsyslog.d/pxelator.conf", "*.*\t\@$server->{ip}\n";
 
        file::append "$debootstrap/etc/network/interfaces", qq{
 
@@ -173,21 +272,23 @@ iface eth0 inet dhcp
                file::append "$export/etc/rc.local", $_;
        } ( '/srv/sysadmin-cookbook/recepies/amt/serial-console.sh' );
 
-       pxelinux::config_for_ip( $ip, qq{
+       pxelinux::config_ip_boot( $ip, "$export/boot", "root=/dev/nfs nfsroot=$server->{ip}:$export ro ip=dhcp" );
 
-default nfsroot
-label nfsroot
-       kernel debootstrap/vmlinuz
-       append initrd=debootstrap/initrd.img root=/dev/nfs nfsroot=$server::ip:$export ro ip=dhcp
+}
 
-       });
+sub openvz {
+       my $ip = shift;
+       ssh::shell( $ip, 'cat /proc/vz/veinfo', 'vzlist -a', 'uptime', 'free', 'df', 'zfs list' );
 }
+sub printer     {}
+sub wrt         {}
 
 sub for_ip {
        my $ip = shift || return;
-       my $deploy = client::conf( $ip => 'deploy' ) || return;
-       eval $deploy . '($ip)';
-#      $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";
+       $server = server::as_hash_for $ip;
+       $server_ip = $server->{ip} || die "no server ip";
+       my $config = client::conf( $ip => 'config' ) || return;
+       eval $config . '($ip)'; # must be last
 }
 
 warn 'loaded';