]> mj.ucw.cz Git - nsc-5.git/commitdiff
Miscellaneous oddities for 2.3 release.
authorMartin Mares <mj@ucw.cz>
Wed, 27 Jun 2001 10:10:02 +0000 (10:10 +0000)
committerMartin Mares <mj@ucw.cz>
Wed, 27 Jun 2001 10:10:02 +0000 (10:10 +0000)
NEWS
README
bin/convert
m4/nsc.m4
nsc.lsm

diff --git a/NEWS b/NEWS
index a7e5dd5fb071037de0156665334d9b54cc113f6a..cdb2cf5404852b7daa8b93e073895ac71081ec6b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+Version 2.3  [27-06-2001]
+
+  o  Global parameters (hostmaster mail address etc.) can be set
+     in cf/config now.
+  o  Autodetect which M4 should be used.
+  o  Fixed bugs in convert script.
+  o  Generate $TTL to make new releases of bind happy.
+
 Version 2.2  [11-09-1999]
 
   o  Corrected localhost records.
diff --git a/README b/README
index 1a3ef8d36e1b7469eafa155f66b039d76eac0676..2f201ea08744fe404c72d98583d61ec0675934f5 100644 (file)
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
 
-            Domain Name Server Configuration Utilities -- NSC 2.2
+            Domain Name Server Configuration Utilities -- NSC 2.3
 
-                   (c) 1997--1999 Martin Mares <mj@ucw.cz>
+                   (c) 1997--2001 Martin Mares <mj@ucw.cz>
 
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
@@ -43,7 +43,7 @@ GNU General Public License. See file COPYING in any of the GNU utility archives
    An interesting companion to this program is the Sleuth utility which checks
 consistency of DNS zones. It's written in perl with help of the DNS module,
 knows of more errors than other checkers and it's freely available at
-ftp://atrey.karlin.mff.cuni.cz/pub/local/mj/net/sleuth-1.0.tar.gz.
+ftp://atrey.karlin.mff.cuni.cz/pub/local/mj/net/sleuth-1.3.tar.gz.
 
 
 2. The Domain List File
index ada6fe137a0d263eb5ee0a09bc50fe8a4f55e437..e8d7bb63c461bae67bc3b0aebc0de992791cebce 100755 (executable)
@@ -73,7 +73,7 @@ sub go {
        if (defined $ips{$n}) { print "H($n$ips{$n})\n"; }
        elsif ($flag) { print "HH($n)\n"; }
        if (defined $mx{$n}) { print "MX($mx{$n})\n"; }
-       if (defined $cn{$n}) { print "CNAME($cn{$n})\n"; }
+       if (defined $cn{$n}) { print "ALIAS($cn{$n})\n"; }
 }
 
 sub norm_name {
index 5f56686d1c5fa44d42fc0259bfecf87dea23c696..f6828327ac80c43b0f6f5c0a5cf422264de1d48c 100644 (file)
--- a/m4/nsc.m4
+++ b/m4/nsc.m4
@@ -49,6 +49,7 @@ define(emit_name, `ifdef(`keep_addr', `keep_addr`'undefine(`keep_addr')', `$1')'
 
 define(DO_SOA, `divert; Primary file for the whole_domain domain generated on curdate
 
+$TTL   minttl
 whole_domain.  `SOA'   corr_dot(nsname) maintname (
                version refresh retry expire minttl )')
 define(SOA, `ifdef(`Xdomain',`define(`Xdomain',$1)',`define(`Xdomain',$1)DO_SOA')')
diff --git a/nsc.lsm b/nsc.lsm
index 068a9388b5dcfd72b8cfe9d876090eabfbf1d963..6cf5fc1faf2dd6fa5bc2dcf6d418210bdb14a4b2 100644 (file)
--- a/nsc.lsm
+++ b/nsc.lsm
@@ -1,14 +1,14 @@
 Begin3
 Title:          Name Server Configurator
-Version:        2.2
-Entered-date:   990910
+Version:        2.3
+Entered-date:   010627
 Description:    Set of utilities and M4 scripts for easy maintenance of
                DNS server configuration and zone files. Requires GNU m4
                and BIND version 8.X or newer.
 Keywords:       named, bind, dns
 Author:         mj@ucw.cz (Martin Mares)
 Maintained-by:  mj@ucw.cz (Martin Mares)
-Primary-site:   atrey.karlin.mff.cuni.cz pub/local/mj/net/nsc-2.2.tar.gz
-Alternate-site: metalab.unc.edu pub/Linux/system/network/management/nsc-2.2.tar.gz
+Primary-site:   atrey.karlin.mff.cuni.cz pub/local/mj/net/nsc-2.3.tar.gz
+Alternate-site: metalab.unc.edu pub/Linux/system/network/management/nsc-2.3.tar.gz
 Copying-policy: GPL
 End