/[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 273 by dpavlin, Wed Aug 19 23:12:18 2009 UTC revision 457 by dpavlin, Sat Jan 2 17:20:40 2010 UTC
# Line 8  use server; Line 8  use server;
8  use pxelinux;  use pxelinux;
9  use client;  use client;
10  use file;  use file;
11    use ssh;
12    
13  use File::Slurp;  use File::Slurp;
14    
15  our $mounted;  our $mounted;
16    
17  sub available { qw/debian_live webconverger debirf tinycore nfsroot/ };  sub available { qw/katalog debian_live webconverger debirf tinycore nfsroot openvz printer wrt/ };
18    
19  sub debian_live {  sub debian_live {
20          my ($ip) = @_;          my ($ip) = @_;
# Line 32  sub debian_live { Line 33  sub debian_live {
33  default debian_live  default debian_live
34  label debian_live  label debian_live
35          kernel vmlinuz1          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          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
37          });          });
38    
39  }  }
# Line 50  L<http://webconverger.org/> Line 51  L<http://webconverger.org/>
51  sub webconverger {  sub webconverger {
52          my ($ip) = @_;          my ($ip) = @_;
53    
54          $mounted->{$ip} ||= upstream::iso( 'http://download.webconverger.com/webc-5.2.iso' );          $mounted->{"webconverger/$ip"} ||= upstream::iso( 'http://download.webconverger.com/webc-5.5.iso' );
55    
         my $homepage = client::conf( $ip => 'homepage', default => "http://${server::ip}:7777/client" );  
56          my $hostname = client::conf( $ip => 'hostname' ) || 'webconverger';          my $hostname = client::conf( $ip => 'hostname' ) || 'webconverger';
57    
58            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          pxelinux::config_for_ip( $ip, qq{          pxelinux::config_for_ip( $ip, qq{
64    
65  default webconverger  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://${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
69    
70          });          });
71    
72  }  }
73    
74    sub katalog {
75            my ($ip) = @_;
76            $mounted->{"webconverger/$ip"} ||= upstream::iso( 'http://download.webconverger.com/webc-5.5.iso' );
77            my $hostname = client::conf( $ip => 'hostname' ) || 'katalog';
78            my $homepage = client::conf( $ip => 'webconverger/homepage' => "http://koha.ffzg.hr" );
79            my $fetch    = client::conf( $ip => 'webconverger/fetch' => "http://${server::ip}:7777/webconverger/custom.squashfs" );
80    
81            pxelinux::config_for_ip( $ip, qq{
82    
83    default katalog
84    label katalog
85            kernel iso/live/vmlinuz-2.6.30-backports.1-486
86            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
87    
88            });
89    
90    }
91  =head1 debirf  =head1 debirf
92    
93  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.  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.
# Line 109  sub in_chroot { Line 131  sub in_chroot {
131  }  }
132    
133  sub nfsroot {  sub nfsroot {
134          my $ip = shift;          my $ip = shift || die "no ip?";
135    
136          my $nfsroot = "$server::base_dir/tftp/nfsroot";          my $nfsroot = "$server::base_dir/tftp/nfsroot";
137          my $debian_mirror = server::conf_default( 'debian_mirror', 'http://ftp.debian.org/debian' );          my $debian_mirror = server::conf_default( 'debian_mirror', 'http://ftp.debian.org/debian' );
# Line 125  sub nfsroot { Line 147  sub nfsroot {
147    
148                  system "sudo debootstrap --arch i386 lenny $debootstrap $debian_mirror";                  system "sudo debootstrap --arch i386 lenny $debootstrap $debian_mirror";
149    
150                  file::append "$debootstrap/etc/kernel-img.conf", "do_initrd = Yes\n" &&                  file::append "$debootstrap/etc/apt/sources.list.d/non-free.list", "deb $debian_mirror lenny non-free\n";
151                  in_chroot     $debootstrap => 'apt-get install -y --force-yes atl2-modules-2.6-686';                  in_chroot     $debootstrap => 'apt-get update';
152    
153                    file::append "$debootstrap/etc/kernel-img.conf", "do_initrd = Yes\n";
154                    in_chroot     $debootstrap => 'apt-get install -y --force-yes atl2-modules-2.6-686 firmware-bnx2';
155                  in_chroot     $debootstrap => 'apt-get -f install -y --force-yes locales';      # linux-image-2.6-686                  in_chroot     $debootstrap => 'apt-get -f install -y --force-yes locales';      # linux-image-2.6-686
156    
157                  file::append "$debootstrap/etc/initramfs-tools/modules", "atl2\n";                  file::append "$debootstrap/etc/initramfs-tools/modules", "atl2\n";
158                  file::change("$debootstrap/etc/initramfs-tools/initramfs.conf",  'BOOT=local' => 'BOOT=nfs' ) &&                  file::change("$debootstrap/etc/initramfs-tools/initramfs.conf",  'BOOT=local' => 'BOOT=nfs' ) &&
159                  in_chroot     $debootstrap => 'update-initramfs -u';                  in_chroot     $debootstrap => 'update-initramfs -u';
160    
                 file::append "$debootstrap/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  
   
                 };  
   
161          }          }
162    
163          my $export = "$nfsroot/$ip";          my $export = "$nfsroot/$ip";
164          my $br     = "$nfsroot/br/$ip";          my $br     = "$nfsroot/br/$ip";
165    
166          my $m = $mounted->{$ip} ||= `mount | grep $export`;          $mounted->{"nfsroot/$ip"} ||= `mount | grep $export`;
167          if ( ! $m ) {  
168            if ( ! $mounted->{"nfsroot/$ip"} ) {
169                  warn "mounting $export";                  warn "mounting $export";
170    
171                  mkdir "$nfsroot/br"     unless -e "$nfsroot/br";                  mkdir "$nfsroot/br"     unless -e "$nfsroot/br";
# Line 160  iface eth0 inet dhcp Line 175  iface eth0 inet dhcp
175                  system "sudo mount -t aufs -o br:$br:$debootstrap none $export";                  system "sudo mount -t aufs -o br:$br:$debootstrap none $export";
176                  system "sudo exportfs -i -o rw,async,no_root_squash,no_subtree_check,fsid=999 $ip:$export";                  system "sudo exportfs -i -o rw,async,no_root_squash,no_subtree_check,fsid=999 $ip:$export";
177                    
                 my $hostname = client::conf( $ip => 'hostname' ) || 'nfsroot';  
                 write_file "$export/etc/hostname", $hostname;  
                 file::append "$export/hosts", '127.0.0.1';  
178          }          }
179    
180            my $hostname = client::conf( $ip => 'hostname' ) || 'nfsroot';
181            file::replace "$export/etc/hostname", $hostname;
182            file::replace "$export/etc/hosts", "127.0.0.1\tlocalhost $hostname\n";
183            file::replace "$export/etc/resolv.conf", "domain $server::domain_name\nnameserver $server::ip\n";
184            file::replace "$export/etc/rsyslog.d/pxelator.conf", "*.*\t\@$server::ip\n";
185    
186            file::append "$debootstrap/etc/network/interfaces", qq{
187    
188    auto lo
189    iface lo inet loopback
190    
191    allow-hotplug eth0
192    iface eth0 inet dhcp
193    
194            };
195    
196            map {
197                    file::copy_once $_ => "$export/$_";
198                    file::append "$export/etc/rc.local", $_;
199            } ( '/srv/sysadmin-cookbook/recepies/amt/serial-console.sh' );
200    
201          pxelinux::config_for_ip( $ip, qq{          pxelinux::config_for_ip( $ip, qq{
202    
# Line 176  label nfsroot Line 208  label nfsroot
208          });          });
209  }  }
210    
211  sub for_ip {  sub openvz {
212          my $ip = shift;          my $ip = shift;
213          my $deploy = client::conf( $ip => 'deploy', default => 'webconverger' );          ssh::shell( $ip, 'cat /proc/vz/veinfo', 'vzlist -a', 'uptime', 'free', 'df', 'zfs list' );
214          eval $deploy . '($ip)';  }
215    sub printer     {}
216    sub wrt         {}
217    
218    sub for_ip {
219            my $ip = shift || return;
220            my $config = client::conf( $ip => 'config' ) || return;
221            eval $config . '($ip)';
222  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";
223  }  }
224    

Legend:
Removed from v.273  
changed lines
  Added in v.457

  ViewVC Help
Powered by ViewVC 1.1.26