updated to skip dnssec when listing all

This commit is contained in:
2020-11-21 16:35:37 -05:00
parent f84b932d31
commit 99bee8938a

View File

@ -8,5 +8,6 @@ my $ddns = Martnet::DDNS->new();
my @vh = $ddns->get();
foreach my $i (sort {$a->{zone} cmp $b->{zone}} @vh) {
next if ($i->{type} eq '_dnssec'); # Skip DNSSEC flags
print $i->{zone}, ". $i->{type} master: ", $i->{master},"\n";
}