/[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 277 by dpavlin, Thu Aug 20 19:00:13 2009 UTC revision 434 by dpavlin, Wed Sep 16 00:47:47 2009 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/debian_live webconverger debirf tinycore nfsroot openvz printer wrt/ };
18    
19  sub debian_live {  sub debian_live {
20          my ($ip) = @_;          my ($ip) = @_;
# Line 168  iface eth0 inet dhcp Line 169  iface eth0 inet dhcp
169    
170          };          };
171    
172            map {
173                    file::copy_once $_ => "$export/$_";
174                    file::append "$export/etc/rc.local", $_;
175            } ( '/srv/sysadmin-cookbook/recepies/amt/serial-console.sh' );
176    
177          pxelinux::config_for_ip( $ip, qq{          pxelinux::config_for_ip( $ip, qq{
178    
# Line 179  label nfsroot Line 184  label nfsroot
184          });          });
185  }  }
186    
187  sub for_ip {  sub openvz {
188          my $ip = shift;          my $ip = shift;
189          my $deploy = client::conf( $ip => 'deploy', default => 'webconverger' );          ssh::shell( $ip, 'cat /proc/vz/veinfo', 'vzlist -a', 'uptime', 'free', 'df', 'zfs list' );
190          eval $deploy . '($ip)';  }
191    sub printer     {}
192    sub wrt         {}
193    
194    sub for_ip {
195            my $ip = shift || return;
196            my $config = client::conf( $ip => 'config' ) || return;
197            eval $config . '($ip)';
198  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";  #       $tftp::dir = "$server::base_dir/tftp/$pxelinux::path_prefix";
199  }  }
200    

Legend:
Removed from v.277  
changed lines
  Added in v.434

  ViewVC Help
Powered by ViewVC 1.1.26