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

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

revision 168 by dpavlin, Thu Aug 6 21:31:10 2009 UTC revision 177 by dpavlin, Fri Aug 7 14:08:21 2009 UTC
# Line 42  sub client_ip { Line 42  sub client_ip {
42          my $conf = $server::conf;          my $conf = $server::conf;
43          mkdir $conf unless -e $conf;          mkdir $conf unless -e $conf;
44    
45            my $ip;
46    
47          if ( -e "$conf/mac/$mac" ) {          if ( -e "$conf/mac/$mac" ) {
48                  my $ip = read_file "$conf/mac/$mac";                  $ip = read_file "$conf/mac/$mac";
49                  print "RENEW $mac $ip\n";                  print "RENEW $mac $ip\n";
50                  return $ip;                  return $ip;
51            } else {
52                    $ip = client::next_ip;
53                    print "NEW $mac $ip\n";
54                    write_file "$conf/mac/$mac", $ip;
55          }          }
56    
         my $ip = client::next_ip;  
   
         write_file "$conf/mac/$mac", $ip;  
   
57          my $ip_path = "$conf/ip/$ip";          my $ip_path = "$conf/ip/$ip";
58          mkdir $ip_path unless -e $ip_path;          mkdir $ip_path unless -e $ip_path;
59    
# Line 59  sub client_ip { Line 61  sub client_ip {
61                  warn "$mac IP changed from ", readlink "$ip_path/mac", " to $ip";                  warn "$mac IP changed from ", readlink "$ip_path/mac", " to $ip";
62                  unlink "$ip_path/mac";                  unlink "$ip_path/mac";
63          };          };
         symlink "$conf/mac/$mac", "$ip_path/mac";  
64    
65          print "$mac NEW $ip\n";          symlink "$conf/mac/$mac", "$ip_path/mac";
66    
67          return $ip;          return $ip;
68  }  }

Legend:
Removed from v.168  
changed lines
  Added in v.177

  ViewVC Help
Powered by ViewVC 1.1.26