X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fnamed-conf;h=59f3178abf56fca7f2691826e0e9a9f89b37725a;hb=252180bc561bdc40508d67acbd4be48a204fbf24;hp=6ec87cbc5811e0fb2ca64938753710c8325e26fc;hpb=ff713d3ee7e2da6fae9251981bc67069a687bcf7;p=chiark-utils.git diff --git a/scripts/named-conf b/scripts/named-conf index 6ec87cb..59f3178 100755 --- a/scripts/named-conf +++ b/scripts/named-conf @@ -1,4 +1,19 @@ #!/usr/bin/perl -w +# This is chiark-named-conf, which is Copyright 2002 Ian Jackson. +# +# chiark-named-conf and its manpage are free software; you can +# redistribute it and/or modify them under the terms of the GNU +# General Public License as published by the Free Software Foundation; +# either version 2, or (at your option) any later version. +# +# chiark-named-conf and its manpage are distributed in the hope that +# it will be useful, but WITHOUT ANY WARRANTY; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +# PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. use strict; use IO::File; @@ -6,6 +21,50 @@ use Data::Dumper; use POSIX; use Fcntl qw(:DEFAULT :flock); +# bastard Perl wants me to do this now ! +sub loarg(); +sub soarg(); +sub usageerr ($); +sub cfg_fail ($); +sub read_config ($); +sub qualify ($); +sub bad_modifiers ($); +sub zone_conf ($$$$$@); +sub set_output($); +sub progress ($$); +sub verbose ($); +sub process_zones (@); +sub zone_warning ($$); +sub zone_warnmore ($); +sub zone_check_full (); +sub zone_reset(); +sub zone_investigate(); +sub zone_check_nsrrset ($$$$); +sub zone_ns_name ($$); +sub zone_server_queue ($$$$$); +sub zone_server_addr ($$$$$); +sub zone_check_soa ($$$$); +sub zone_consistency(); +sub zone_servers_ok (); +sub zone_consistency_set ($%); +sub zone_check_local (); +sub zone_servers_simplefind (); +sub zone_server_simple ($$$); +sub zone_style ($$); +sub mail_zone_before (); +sub mail_zone_after (); +sub pmail ($); +sub ptime ($); +sub mail_zone_mail (); +sub zone_output (); +sub output_files (); +sub debug_dump ($); +sub debug_trace ($); +sub has_suffix_of ($$); +sub lookup ($$$$); +sub dig (&$$$); +sub domain_canon ($$); + use vars qw($quis $stdout_fh $stderr_fh $mode $doall $domail $etcfile $where @@ -28,7 +87,7 @@ $admin=''; $mail_state_dir=''; $mail_max_warnfreq= 50; $repeat= 0; $domail= ''; $modifiers= ''; -$group2modcmd{'foreign'}= '*$!@?'; +$group2modcmd{'foreign'}= '$!*@?'; $group2used{'foreign'}= 1; ($progress_fh= $stdout_fh= new_from_fd IO::Handle(1,'w') and