Changeset 3126 in genesis
- Timestamp:
- Nov 6, 2004, 6:31:34 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dns/zone2rev.pl
r3124 r3126 21 21 unless $host =~ m/\.$/; 22 22 23 warn "A-Resourcce Duplicated\n\tfor $ip/$host at line $.\n"23 warn "A-Resourcce defined in two places\n\tfor $ip/$host at line $. and $line{$ip}\n" 24 24 if defined $host{$ip} and $host{$ip} eq $host; 25 25 26 warn "A-Resourcce Conflict \n\t$ip used for $host and $host{$ip} at line $.\n"26 warn "A-Resourcce Conflict - there should be just one.\n\t$ip used for $host and $host{$ip} at line $. and $line{$ip}\n" 27 27 if defined $host{$ip}; 28 28 29 warn "Resource reuse\n\t$host at $ip{$host}/$ip at line $.\n"29 warn "Resource defined in two places\n\t$host at $ip{$host} at line $. and $line{$host}.\n" 30 30 if defined $ip{$host} and $ip eq $ip{$host}; 31 31 32 warn "Resourc ce mismatch\n\t$host at $ip{$host} and $ip at line $.\n"32 warn "Resource confict - there should be just one.\n\t$host at $ip{$host} and $ip at line $. and $line{$host}\n" 33 33 if defined $ip{$host}; 34 34 35 35 $host{$ip} = $host; 36 36 $ip{$host} = $ip; 37 $line{$ip} = $line{$host} = $.; 37 38 38 39 print "$ip\t$host\n";
Note:
See TracChangeset
for help on using the changeset viewer.