/[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 129 by dpavlin, Mon Aug 3 20:53:46 2009 UTC revision 176 by dpavlin, Fri Aug 7 12:27:28 2009 UTC
# Line 2  package config; Line 2  package config;
2    
3  use warnings;  use warnings;
4  use strict;  use strict;
5    use autodie;
6    
7  use server;  use server;
8  use pxelinux;  use pxelinux;
9    use client;
10  use File::Slurp;  use File::Slurp;
11    
12  sub shared {  sub available { qw/debian_live webconverger debirf tinycore/ };
         my ($name, $value) = @_;  
   
         my $path ="$server::base_dir/conf/$server::ip/$name";  
         if ( defined $value ) {  
                 write_file $path, $value;  
         } else {  
                 $value = read_file $path if -e $path;  
         }  
         return $value;  
 }  
13    
14  sub debian_live {  sub debian_live {
15          $dhcpd::file = "pxelinux.0";          $dhcpd::file = "pxelinux.0";
# Line 25  sub debian_live { Line 17  sub debian_live {
17          $pxelinux::config_file = 'pxelinux.cfg/default';          $pxelinux::config_file = 'pxelinux.cfg/default';
18  }  }
19    
20    use upstream;
21    
22    =head1 webconverger
23    
24    Webconverger - the opensource Web Kiosk
25    
26    L<http://webconverger.org/>
27    
28    =cut
29    
30  sub webconverger {  sub webconverger {
31          $dhcpd::file = "pxelinux.0";          my ($ip) = @_;
32          $pxelinux::path_prefix = 'webconverger/';  
33  #       $pxelinux::config_file = 'default';          upstream::iso( 'http://download.webconverger.com/webc-5.2.iso' );
34    
35            my $homepage = client::conf( $ip => 'homepage', default => "http://${server::ip}:7777/client" );
36            my $hostname = client::conf( $ip => 'hostname', default => 'webconverger' );
37    
38            pxelinux::config_for_ip( $ip, qq{
39    
40    default webconverger
41    label webconverger
42            kernel iso/live/vmlinuz-2.6.30-backports.1-486
43            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
44    
45            });
46    
47          return; # FIXME  }
48    
49    =head1 debirf
50    
51    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.
52    
53    L<http://cmrg.fifthhorseman.net/wiki/debirf>
54    
55    =cut
56    
57    sub debirf {
58            my $ip = shift;
59    
60          my $cfg = "$tftp::dir/pxelinux.cfg";          upstream::iso( 'http://cmrg.mayfirst.org/debirf/debirf-rescue_lenny_2.6.26-1-686.iso' );
         return if -e $cfg;  
61    
62          warn "using iso";          pxelinux::config_for_ip( $ip, qq{
 #       system "mount -t 9660 | grep webc-5.2 || sudo mount /srv/pxelator/iso/webc-5.2.iso /srv/pxelator/tftp/webconverger/iso/ -o loop -t iso9660 -v";  
63    
64          symlink "/usr/lib/syslinux/pxelinux.0", "$tftp::dir/$dhcpd::file";  default linux
65    label linux
66            kernel iso/vmlinuz-2.6.26-1-686
67            append initrd=iso//debirf-rescue_lenny_2.6.26-1-686.cgz
68    
69            });
70    }
71    
72    sub tinycore {
73            my $ip = shift;
74            upstream::iso( 'http://distro.ibiblio.org/pub/linux/distributions/tinycorelinux/2.x/release/tinycore_2.2.iso' );
75            pxelinux::config_for_ip( $ip, qq{
76    
77    default linux
78    label linux
79            kernel iso/boot/bzImage
80            append initrd=iso/boot/tinycore.gz
81    
82            });
83  }  }
84    
85  sub for_ip {  sub for_ip {
86          my $ip = shift;          my $ip = shift;
87  #       debian_live();          my $deploy = client::conf( $ip => 'deploy', default => 'webconverger' );
88          webconverger();          eval $deploy . '($ip)';
89  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";
90  }  }
91    
92    warn 'loaded';
93    
94  1;  1;

Legend:
Removed from v.129  
changed lines
  Added in v.176

  ViewVC Help
Powered by ViewVC 1.1.26