Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Compare zone files in directory with what is listed in named.conf

by fisher (Priest)
on May 15, 2013 at 20:15 UTC ( [id://1033736]=note: print w/replies, xml ) Need Help??


in reply to Compare zone files in directory with what is listed in named.conf

Just skip it.
open F, "named.conf.local" or die "$!"; while(<F>) { chomp; s/^[ \t]*file "db\.(.*)";/$1/ or next; next if /db.cache/; push @lines, $_; } close F;
and
opendir D, "$directory" || die "Cant: $1"; my @list = grep /db/, readdir(D); closedir D;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1033736]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-25 20:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found