Changeset 294
- Timestamp:
- Jul 18, 2018, 10:23:03 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ddt/ddt
r239 r294 2261 2261 2262 2262 LOOP_ON_DOMAIN: 2263 for my $domainset_current ( keys %{$computer_db}) {2263 for my $domainset_current (sort keys %{$computer_db}) { 2264 2264 next if $domainset_current eq 'dset'; 2265 2265 next if $domainset_current eq 'pool'; … … 2268 2268 next if $domainset_current eq 'version'; 2269 2269 2270 print "\n# *** List of computers in the domain set: $domainset_current ***\n";2270 print "\n# *** List of computers without IP in the domain set: $domainset_current ***\n"; 2271 2271 printf "%-30s %-20s %17s %5s %7s %-10s %s\n", 2272 2272 'Hostname', … … 2283 2283 my ($mac_address, $attribute) = %{$computer}; 2284 2284 2285 if ($attribute->{'ip'} =~ $DDT::RE::IPv4_ADDRESS) {2285 if ($attribute->{'ip'} =~ m/$DDT::RE::IPv4_ADDRESS/xms) { 2286 2286 if ( not exists $ipdb{ $attribute->{'ip'} } ) { 2287 2287 $ipdb{ $attribute->{'ip'} } = {
Note: See TracChangeset
for help on using the changeset viewer.