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

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

  ViewVC Help
Powered by ViewVC 1.1.26