- Timestamp:
- 11/11/08 14:03:39 (8 weeks ago)
- Location:
- branches/maintenance-0.12-0.12.10/hardy-base/client/dhcp
- Files:
-
- 4 modified
-
. (modified) (1 prop)
-
ChangeLog (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
src/EBox/Model/RangeTable.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/maintenance-0.12-0.12.10/hardy-base/client/dhcp
- Property svn:mergeinfo set to /trunk/client/dhcp:11486,11507,11587,11628
-
branches/maintenance-0.12-0.12.10/hardy-base/client/dhcp/ChangeLog
r11346 r11631 1 0.12.2 2 + Bugfix: two wrong calls to EBox::Model::Row API fixed. This 3 prevented from adding fixed ranges after adding a fixed address 1 4 0.12.1 2 + Bug fix: use the new EBox::Model::Row apifor DHCP options5 + Bug fix: use the new EBox::Model::Row API for DHCP options 3 6 0.12 4 7 + Make default and max leasing time mandatory fields -
branches/maintenance-0.12-0.12.10/hardy-base/client/dhcp/configure.ac
r11347 r11631 1 AC_INIT([EBox-DHCP], [0.12. 1])1 AC_INIT([EBox-DHCP], [0.12.2]) 2 2 3 3 AC_CONFIG_AUX_DIR([config]) -
branches/maintenance-0.12-0.12.10/hardy-base/client/dhcp/src/EBox/Model/RangeTable.pm
r10728 r11631 164 164 . "with range '{range}': {oldFrom}-{oldTo}", 165 165 newFrom => $from, newTo => $to, 166 range => $row->valueBy Element('name'),166 range => $row->valueByName('name'), 167 167 oldFrom => $compareFrom, 168 168 oldTo => $compareTo)); … … 176 176 . $self->{interface}); 177 177 foreach my $map ( @{$fixedAddressModel->rows()} ) { 178 my $fixedIP = new Net::IP($map->valueBy Element('ip'));178 my $fixedIP = new Net::IP($map->valueByName('ip')); 179 179 unless ( $fixedIP->overlaps($range) == $IP_NO_OVERLAP ) { 180 180 throw EBox::Exceptions::External(__x('Range {from}-{to} includes fixed ' … … 182 182 from => $from, 183 183 to => $to, 184 name => $map->valueBy Element('name'),185 fixedIP => $map->valueBy Element('ip'),184 name => $map->valueByName('name'), 185 fixedIP => $map->valueByName('ip'), 186 186 )); 187 187 }
