/[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 138 by dpavlin, Tue Aug 4 15:25:09 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 File::Slurp;  use File::Slurp;
10    
 sub shared {  
         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;  
 }  
   
11  sub debian_live {  sub debian_live {
12          $dhcpd::file = "pxelinux.0";          $dhcpd::file = "pxelinux.0";
13          $pxelinux::path_prefix = 'live-helper/tftpboot/';          $pxelinux::path_prefix = 'live-helper/tftpboot/';
14          $pxelinux::config_file = 'pxelinux.cfg/default';          $pxelinux::config_file = 'pxelinux.cfg/default';
15  }  }
16    
17    use upstream;
18    
19  sub webconverger {  sub webconverger {
20          $dhcpd::file = "pxelinux.0";          my $ip = shift;
         $pxelinux::path_prefix = 'webconverger/';  
 #       $pxelinux::config_file = 'default';  
21    
22          return; # FIXME          upstream::iso( 'http://download.webconverger.com/webc-5.2.iso' );
23    
24          my $cfg = "$tftp::dir/pxelinux.cfg";          pxelinux::config_for_ip( $ip, qq{
         return if -e $cfg;  
25    
26          warn "using iso";  default webconverger
27  #       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";  label webconverger
28            kernel iso/live/vmlinuz-2.6.30-backports.1-486
29            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
30    
31          symlink "/usr/lib/syslinux/pxelinux.0", "$tftp::dir/$dhcpd::file";          });
32    
33  }  }
34    
35  sub for_ip {  sub for_ip {
36          my $ip = shift;          my $ip = shift;
37  #       debian_live();  #       debian_live();
38          webconverger();          webconverger($ip);
39  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";
40  }  }
41    
42    warn 'loaded';
43    
44  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26