/[pxelator]/lib/PXElator/config.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/config.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 135 by dpavlin, Tue Aug 4 13:19:08 2009 UTC revision 444 by dpavlin, Tue Sep 29 19:28:54 2009 UTC
# Line 6  use autodie; Line 6  use autodie;
6    
7  use server;  use server;
8  use pxelinux;  use pxelinux;
9    use client;
10    use file;
11    use ssh;
12    
13  use File::Slurp;  use File::Slurp;
14    
15  sub shared {  our $mounted;
         my ($name, $value) = @_;  
16    
17          my $path ="$server::base_dir/conf/$server::ip/$name";  sub available { qw/debian_live webconverger debirf tinycore nfsroot openvz printer wrt/ };
         if ( defined $value ) {  
                 write_file $path, $value;  
         } else {  
                 $value = read_file $path if -e $path;  
         }  
         return $value;  
 }  
18    
19  sub debian_live {  sub debian_live {
20          $dhcpd::file = "pxelinux.0";          my ($ip) = @_;
         $pxelinux::path_prefix = 'live-helper/tftpboot/';  
         $pxelinux::config_file = 'pxelinux.cfg/default';  
 }  
21    
22  use LWP::Simple qw/mirror RC_NOT_MODIFIED/;          upstream::files( qw{
23  sub webconverger {                  http://cdimage.debian.org/cdimage/release/current-live/i386/web/
24          $dhcpd::file = "pxelinux.0";                  vmlinuz1
25          $pxelinux::path_prefix = 'webconverger/';                  initrd1.img
26                    debian-live-501-i386-standard.squashfs
27            });
28    
29            my $hostname = client::conf( $ip => 'hostname' ) || 'debian-live';
30    
31            pxelinux::config_for_ip( $ip, qq{
32    
33    default debian_live
34    label debian_live
35            kernel vmlinuz1
36            append initrd=initrd1.img fetch=http://${server::ip}:7777/debian_live/debian-live-501-i386-standard.squashfs boot=live nopersistent hostname=$hostname union=aufs
37            });
38    
39    }
40    
41          my $dir = "$server::base_dir/tftp/$pxelinux::path_prefix";  use upstream;
42    
43          mkdir $dir unless -d $dir;  =head1 webconverger
44    
45          my $cfg = "$dir/pxelinux.cfg";  Webconverger - the opensource Web Kiosk
         return 1 if -e $cfg;  
46    
47          mkdir $cfg;  L<http://webconverger.org/>
48    
49          my $iso = '/srv/pxelator/iso/webc-5.2.iso';  =cut
         my $url = 'http://download.webconverger.com/webc-5.2.iso';  
50    
51          print STDERR "mirror $url";  sub webconverger {
52          mirror( $url, $iso)          my ($ip) = @_;
                 == RC_NOT_MODIFIED  
                 && warn(" not modified\n")  
                 || warn(" done ", -s $iso, " bytes\n")  
                 ;  
53    
54          mkdir "$dir/iso" unless -e "$dir/iso";          $mounted->{"webconverger/$ip"} ||= upstream::iso( 'http://download.webconverger.com/webc-5.5.iso' );
55    
56          system "mount -t iso9660 | grep webc-5.2 || sudo mount $iso $dir/iso/ -o loop -t iso9660 -v";          my $hostname = client::conf( $ip => 'hostname' ) || 'webconverger';
57    
58          symlink "/usr/lib/syslinux/pxelinux.0", "$dir/$dhcpd::file";          my $homepage = client::conf( $ip => 'webconverger/homepage'
59                    , default => "http://${server::ip}:7777/client" );
60            my $fetch    = client::conf( $ip => 'webconverger/fetch'
61                    , default => "http://${server::ip}:7777/webconverger/iso/live/filesystem.squashfs" );
62    
63          $cfg .= '/default';          pxelinux::config_for_ip( $ip, qq{
64    
65          write_file $cfg, qq{  default webconverger
66  label webconverger  label webconverger
67          kernel iso/live/vmlinuz-2.6.30-backports.1-486          kernel iso/live/vmlinuz-2.6.30-backports.1-486
68          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          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
69    
70            });
71    
72    }
73    
74    =head1 debirf
75    
76    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.
77    
78    L<http://cmrg.fifthhorseman.net/wiki/debirf>
79    
80    =cut
81    
82    sub debirf {
83            my $ip = shift;
84    
85            upstream::iso( 'http://cmrg.mayfirst.org/debirf/debirf-rescue_lenny_2.6.26-1-686.iso' );
86    
87            pxelinux::config_for_ip( $ip, qq{
88    
89    default linux
90    label linux
91            kernel iso/vmlinuz-2.6.26-1-686
92            append initrd=iso//debirf-rescue_lenny_2.6.26-1-686.cgz
93    
94            });
95    }
96    
97    sub tinycore {
98            my $ip = shift;
99            upstream::iso( 'http://distro.ibiblio.org/pub/linux/distributions/tinycorelinux/2.x/release/tinycore_2.2.iso' );
100            pxelinux::config_for_ip( $ip, qq{
101    
102    default linux
103    label linux
104            kernel iso/boot/bzImage
105            append initrd=iso/boot/tinycore.gz
106    
107            });
108    }
109    
110    sub in_chroot {
111            my ( $dir, $command ) = @_;
112            write_file "$dir/tmp/inside.sh", $command;
113            system "sudo chroot $dir sh -x /tmp/inside.sh";
114    }
115    
116    sub nfsroot {
117            my $ip = shift || die "no ip?";
118    
119            my $nfsroot = "$server::base_dir/tftp/nfsroot";
120            my $debian_mirror = server::conf_default( 'debian_mirror', 'http://ftp.debian.org/debian' );
121    
122            if ( ! -e $nfsroot ) {
123                    system "sudo apt-get install nfs-kernel-server debootstrap aufs-modules-`uname -r` aufs-tools";
124                    mkdir $nfsroot;
125            }
126    
127            my $debootstrap = "$nfsroot/debootstrap";
128    
129            if ( ! -e $debootstrap ) {
130    
131                    system "sudo debootstrap --arch i386 lenny $debootstrap $debian_mirror";
132    
133                    file::append "$debootstrap/etc/kernel-img.conf", "do_initrd = Yes\n" &&
134                    in_chroot     $debootstrap => 'apt-get install -y --force-yes atl2-modules-2.6-686';
135                    in_chroot     $debootstrap => 'apt-get -f install -y --force-yes locales';      # linux-image-2.6-686
136    
137                    file::append "$debootstrap/etc/initramfs-tools/modules", "atl2\n";
138                    file::change("$debootstrap/etc/initramfs-tools/initramfs.conf",  'BOOT=local' => 'BOOT=nfs' ) &&
139                    in_chroot     $debootstrap => 'update-initramfs -u';
140    
141            }
142    
143            my $export = "$nfsroot/$ip";
144            my $br     = "$nfsroot/br/$ip";
145    
146            $mounted->{"nfsroot/$ip"} ||= `mount | grep $export`;
147    
148            if ( ! $mounted->{"nfsroot/$ip"} ) {
149                    warn "mounting $export";
150    
151                    mkdir "$nfsroot/br"     unless -e "$nfsroot/br";
152                    mkdir $br                       unless -e $br;
153                    mkdir $export           unless -e $export;
154    
155                    system "sudo mount -t aufs -o br:$br:$debootstrap none $export";
156                    system "sudo exportfs -i -o rw,async,no_root_squash,no_subtree_check,fsid=999 $ip:$export";
157            
158            }
159    
160            my $hostname = client::conf( $ip => 'hostname' ) || 'nfsroot';
161            file::replace "$export/etc/hostname", $hostname;
162            file::replace "$export/etc/hosts", "127.0.0.1\tlocalhost $hostname\n";
163            file::replace "$export/etc/resolv.conf", "domain $server::domain_name\nnameserver $server::ip\n";
164            file::replace "$export/etc/rsyslog.d/pxelator.conf", "*.*\t\@$server::ip\n";
165    
166            file::append "$debootstrap/etc/network/interfaces", qq{
167    
168    auto lo
169    iface lo inet loopback
170    
171    allow-hotplug eth0
172    iface eth0 inet dhcp
173    
174          };          };
175    
176  #       $pxelinux::config_file = $cfg;          map {
177                    file::copy_once $_ => "$export/$_";
178                    file::append "$export/etc/rc.local", $_;
179            } ( '/srv/sysadmin-cookbook/recepies/amt/serial-console.sh' );
180    
181            pxelinux::config_for_ip( $ip, qq{
182    
183    default nfsroot
184    label nfsroot
185            kernel debootstrap/vmlinuz
186            append initrd=debootstrap/initrd.img root=/dev/nfs nfsroot=$server::ip:$export ro ip=dhcp
187    
188            });
189  }  }
190    
191  sub for_ip {  sub openvz {
192          my $ip = shift;          my $ip = shift;
193  #       debian_live();          ssh::shell( $ip, 'cat /proc/vz/veinfo', 'vzlist -a', 'uptime', 'free', 'df', 'zfs list' );
194          webconverger();  }
195    sub printer     {}
196    sub wrt         {}
197    
198    sub for_ip {
199            my $ip = shift || return;
200            my $config = client::conf( $ip => 'config' ) || return;
201            eval $config . '($ip)';
202  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";
203  }  }
204    

Legend:
Removed from v.135  
changed lines
  Added in v.444

  ViewVC Help
Powered by ViewVC 1.1.26