custom webconverger configuration
[pxelator] / lib / PXElator / config.pm
index 0547905..286b966 100644 (file)
@@ -7,9 +7,14 @@ use autodie;
 use server;
 use pxelinux;
 use client;
+use file;
+use ssh;
+
 use File::Slurp;
 
-sub available { qw/debian_live webconverger debirf tinycore nfsroot/ };
+our $mounted;
+
+sub available { qw/katalog debian_live webconverger debirf tinycore nfsroot openvz printer wrt/ };
 
 sub debian_live {
        my ($ip) = @_;
@@ -28,7 +33,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
        });
 
 }
@@ -46,22 +51,43 @@ L<http://webconverger.org/>
 sub webconverger {
        my ($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
 
        });
 
 }
 
+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. 
@@ -98,58 +124,98 @@ label linux
        });
 }
 
+sub in_chroot {
+       my ( $dir, $command ) = @_;
+       write_file "$dir/tmp/inside.sh", $command;
+       system "sudo chroot $dir sh -x /tmp/inside.sh";
+}
+
 sub nfsroot {
-       my $ip = shift;
+       my $ip = shift || die "no ip?";
 
        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";
+               system "sudo apt-get install nfs-kernel-server debootstrap aufs-modules-`uname -r` aufs-tools";
+               mkdir $nfsroot;
+       }
 
-               if ( ! -e $nfsroot ) {
-                       mkdir $nfsroot;
-                       system "debootstrap --arch i386 lenny $nfsroot http://ftp.hr.debian.org/debian";
-               }
+       my $debootstrap = "$nfsroot/debootstrap";
 
-               write_file "$nfsroot/tmp/configure.sh", qq{
-echo "do_initrd = Yes" > /etc/kernel-img.conf
+       if ( ! -e $debootstrap ) {
 
-# apt-get install kernel-image-686
-apt-get install atl2-modules-2.6-686
-echo atl2 >> /etc/initramfs-tools/modules
+               system "sudo debootstrap --arch i386 lenny $debootstrap $debian_mirror";
 
-cat /etc/initramfs-tools/initramfs.conf | sed 's/BOOT=local/BOOT=nfs/' > /tmp/initramfs.conf \
-       && mv /tmp/initramfs.conf /etc/initramfs-tools/initramfs.conf
+               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
 
-update-initramfs -u -v
+               file::append "$debootstrap/etc/initramfs-tools/modules", "atl2\n";
+               file::change("$debootstrap/etc/initramfs-tools/initramfs.conf",  'BOOT=local' => 'BOOT=nfs' ) &&
+               in_chroot     $debootstrap => 'update-initramfs -u';
+
+       }
 
-};
+       my $export = "$nfsroot/$ip";
+       my $br     = "$nfsroot/br/$ip";
 
-               system "chroot $nfsroot sh -x /tmp/configure.sh";
+       $mounted->{"nfsroot/$ip"} ||= `mount | grep $export`;
 
-               open(my $exports, '>>', '/etc/exports');
-               print $exports "$nfsroot\t$server::ip/$server::netmask(rw,async,no_root_squash,no_subtree_check)\n";
-               close($exports);
+       if ( ! $mounted->{"nfsroot/$ip"} ) {
+               warn "mounting $export";
 
-               system "exportfs -rva";
+               mkdir "$nfsroot/br"     unless -e "$nfsroot/br";
+               mkdir $br                       unless -e $br;
+               mkdir $export           unless -e $export;
 
+               system "sudo mount -t aufs -o br:$br:$debootstrap none $export";
+               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::append "$debootstrap/etc/network/interfaces", qq{
+
+auto lo
+iface lo inet loopback
+
+allow-hotplug eth0
+iface eth0 inet dhcp
+
+       };
+
+       map {
+               file::copy_once $_ => "$export/$_";
+               file::append "$export/etc/rc.local", $_;
+       } ( '/srv/sysadmin-cookbook/recepies/amt/serial-console.sh' );
+
        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
+       kernel debootstrap/vmlinuz
+       append initrd=debootstrap/initrd.img root=/dev/nfs nfsroot=$server::ip:$export ro ip=dhcp
 
        });
 }
 
-sub for_ip {
+sub openvz {
        my $ip = shift;
-       my $deploy = client::conf( $ip => 'deploy', default => 'webconverger' );
-       eval $deploy . '($ip)';
+       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 $config = client::conf( $ip => 'config' ) || return;
+       eval $config . '($ip)';
 #      $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";
 }