OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Christoph Schug
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 29-Jun-2004 18:26:27
Branch: HEAD Handle: -NONE-
Modified files:
openpkg-src/bind bind.spec db.root.sh
Log:
fixed creation of root server hint file
Summary:
Revision Changes Path
1.90 +1 -1 openpkg-src/bind/bind.spec
1.5 +3 -2 openpkg-src/bind/db.root.sh
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/bind/bind.spec
============================================================================
$ cvs diff -u -r1.89 -r1.90 bind.spec
--- openpkg-src/bind/bind.spec 8 Jun 2004 20:44:41 -0000 1.89
+++ openpkg-src/bind/bind.spec 29 Jun 2004 16:26:26 -0000 1.90
@@ -38,7 +38,7 @@
Group: DNS
License: ISC
Version: %{V_bind}
-Release: 20040608
+Release: 20040629
# package options
%option with_dlz no
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/bind/db.root.sh
============================================================================
$ cvs diff -u -r1.4 -r1.5 db.root.sh
--- openpkg-src/bind/db.root.sh 7 Sep 2003 14:32:49 -0000 1.4
+++ openpkg-src/bind/db.root.sh 29 Jun 2004 16:26:26 -0000 1.5
@@ -15,9 +15,10 @@
done
[ -f $ROOTFILE.raw ] || exit 1
awk <$ROOTFILE.raw '
- /IN NS/ { printf("%-20s 99999999 IN NS %s\n", $1, $NF); }
- /IN A/ { printf("%-20s 99999999 IN A %s\n", $1, $NF); }
+ /IN[ ]NS/ { printf("%-20s 99999999 IN NS %s\n", $1, $NF); }
+ /IN[ ]A/ { printf("%-20s 99999999 IN A %s\n", $1, $NF); }
' |\
+egrep -v '^;' |\
sort >>$ROOTFILE
echo "" >>$ROOTFILE
rm $ROOTFILE.raw
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]