/[pxelator]/lib/PXElator/client.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/client.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 218 by dpavlin, Thu Aug 13 13:32:19 2009 UTC revision 219 by dpavlin, Sat Aug 15 13:44:13 2009 UTC
# Line 4  use warnings; Line 4  use warnings;
4  use strict;  use strict;
5  use autodie;  use autodie;
6    
 use server;  
7  use File::Slurp;  use File::Slurp;
8  use Net::Ping;  use Net::Ping;
9    use Carp qw/confess/;
10    
11    use server;
12  use format;  use format;
13    
14    sub mkbasedir {
15            my $path = shift;
16            $path =~ s{(^.*)/[^/]+$}{$1};
17            mkdir $path unless -d $path;
18            return $path;
19    }
20    
21  sub mac_path { $server::conf . '/mac/' . $_[0] }  sub mac_path { $server::conf . '/mac/' . $_[0] }
22  sub  ip_path { $server::conf . '/ip/'  . join('/', @_) }  sub  ip_path { $server::conf . '/ip/'  . join('/', @_) }
23    sub conf_value {
24            my $path = shift;
25            my $value;
26            if ( -l $path ) {
27                    $value = readlink $path;
28                    $value =~ s{.*/([^/]+)$}{$1};
29            } elsif ( -f $path ) {
30                    $value = read_file $path;
31            } else {
32                    confess "$path not file or symlink";
33            }
34            return $value;
35    }
36    
37  sub conf {  sub conf {
38          my $ip  = shift;          my $ip  = shift;
# Line 27  sub conf { Line 49  sub conf {
49          $path .= '/' . $name;          $path .= '/' . $name;
50    
51          if ( defined $value ) {          if ( defined $value ) {
52                    mkbasedir  $path;
53                  write_file $path, $value;                  write_file $path, $value;
54                  warn "update $path = $value";                  warn "update $path = $value";
55          } elsif ( ! -e $path && defined $default ) {          } elsif ( ! -e $path && defined $default ) {
56                    mkbasedir  $path;
57                  write_file $path, $default;                  write_file $path, $default;
58                  warn "default $path = $default";                  warn "default $path = $default";
59                  $value = $default;                  $value = $default;
60          } elsif ( -e $path ) {          } elsif ( -f $path ) {
61                  if ( -l $path ) {                  $value = read_file $path;
62                          $value = readlink $path;          } else {
63                          $value =~ s{.*/([^/]+)$}{$1};                  confess "conf $name";
                 } else {  
                         $value = read_file $path;  
                 }  
64          }          }
65          return $value;          return $value;
66  }  }
# Line 90  sub ip_from_mac($) { Line 111  sub ip_from_mac($) {
111                  symlink ip_path($ip), $mac_path;                  symlink ip_path($ip), $mac_path;
112                  warn "I: upgrade to mac symlink $mac_path\n";                  warn "I: upgrade to mac symlink $mac_path\n";
113          } elsif ( -l $mac_path ) {          } elsif ( -l $mac_path ) {
114                  $ip = readlink $mac_path;                  $ip = conf_value $mac_path;
                 $ip =~ s{^.+/([^/]+)$}{$1};  
115          } else {          } else {
116                  die "$mac_path not file or symlink";                  die "$mac_path not file or symlink";
117          }          }
# Line 101  sub ip_from_mac($) { Line 121  sub ip_from_mac($) {
121    
122  sub mac_from_ip($) {  sub mac_from_ip($) {
123          my $ip = shift;          my $ip = shift;
124          return read_file ip_path($ip, 'mac');          conf_value ip_path($ip, 'mac');
125  }  }
126    
127  sub change_ip($$) {  sub change_ip($$) {

Legend:
Removed from v.218  
changed lines
  Added in v.219

  ViewVC Help
Powered by ViewVC 1.1.26