--- lib/PXElator/server.pm 2009/07/29 22:04:58 45 +++ lib/PXElator/server.pm 2009/08/11 12:39:05 198 @@ -1,7 +1,50 @@ package server; -our $ip = '172.16.10.1'; +use warnings; +use strict; + + +our $ip = '172.16.10.1'; +our $netmask = '255.255.255.0'; +our $bcast = '172.16.10.255'; + +if ( my $dev = $ENV{DEV} ) { + my $ifconfig = `ifconfig $dev`; + ( $ip, $bcast, $netmask ) = ( $1, $2, $3 ) if $ifconfig =~ m{inet addr:(\S+)\s+Bcast:(\S+)\s+Mask:(\S+)}s; + warn "DEV $dev $ip $bcast $netmask"; +} our ( $ip_from, $ip_to ) = ( 10, 100 ); +our $domain_name = 'pxelator.lan'; + +our $base_dir = '/srv/pxelator'; + +our $conf = "$base_dir/conf/$ip"; +mkdir $conf unless -e $conf; + +use Module::Refresh qw//; +sub refresh { Module::Refresh->refresh }; + + +mkdir $_ foreach grep { ! -d $_ } map { "$conf/$_" } ( 'ip', 'mac' ); + +use File::Slurp; +sub shared { + my ($name, $value) = @_; + + my $path ="$conf/$name"; + if ( defined $value ) { + write_file $path, $value; + warn "update $path = $value"; + } else { + $value = read_file $path if -e $path; + } + return $value; +} + +sub debug { shared('debug', @_) || 0 } + warn "loaded"; + +1;