summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin V. Arkhipov <voxus@gentoo.org>2006-01-02 17:54:03 +0000
committerKonstantin V. Arkhipov <voxus@gentoo.org>2006-01-02 17:54:03 +0000
commitc7b9555538edc2606caf7e8280d94569e360b15a (patch)
tree1922bfcae9572036be6e83cc7f38f6ca97456097 /net-dns/bind
parentppc stable, bug #116181 (diff)
downloadhistorical-c7b9555538edc2606caf7e8280d94569e360b15a.tar.gz
historical-c7b9555538edc2606caf7e8280d94569e360b15a.tar.bz2
historical-c7b9555538edc2606caf7e8280d94569e360b15a.zip
* ressurected conf
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'net-dns/bind')
-rw-r--r--net-dns/bind/ChangeLog7
-rw-r--r--net-dns/bind/Manifest3
-rw-r--r--net-dns/bind/files/named.conf-r242
3 files changed, 49 insertions, 3 deletions
diff --git a/net-dns/bind/ChangeLog b/net-dns/bind/ChangeLog
index ee19709ce082..4401689a629d 100644
--- a/net-dns/bind/ChangeLog
+++ b/net-dns/bind/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-dns/bind
-# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.98 2005/11/12 00:11:09 voxus Exp $
+# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.99 2006/01/02 17:54:03 voxus Exp $
+
+ 02 Jan 2006; Konstantin Arkhipov <voxus@gentoo.org> +files/named.conf-r2:
+ Restored wrongly deleted conf file. Closing bug #114770.
*bind-9.3.2_beta2-r2 (12 Nov 2005)
*bind-9.3.1-r8 (12 Nov 2005)
diff --git a/net-dns/bind/Manifest b/net-dns/bind/Manifest
index 47dfb717ab6d..d889088b37d2 100644
--- a/net-dns/bind/Manifest
+++ b/net-dns/bind/Manifest
@@ -1,4 +1,4 @@
-MD5 b37f96f0d04cf6af5ff4fe1e5e86370b ChangeLog 16595
+MD5 cf1acb41799f328f348ff2badbcb40d6 ChangeLog 16731
MD5 64661f29315f63e8d14f3c5fe3efdb73 bind-9.2.5-r10.ebuild 8945
MD5 2c50194cee9e7484dc5ac78935fdf0d5 bind-9.2.5-r4.ebuild 8347
MD5 109211a7fac00f530ce0d255763f24b2 bind-9.2.5-r6.ebuild 8376
@@ -18,6 +18,7 @@ MD5 2bb12cfcd70284e72fbf9e70e5e2974d files/dyndns-samples.tbz2 22866
MD5 ccfca63035b534556c3910270d40a4b9 files/localhost.zone 412
MD5 2b6e7c10f43941cdd147d5de0c9c02d6 files/localhost.zone-r1 419
MD5 e83e7a76e253debfdd120311fda73fb6 files/named.ca 2518
+MD5 e9bb1e01cf0b7597e739e889499ddd7a files/named.conf-r2 768
MD5 be5fd752bdbd59385f2a559d603098d5 files/named.conf-r3 1314
MD5 d9bda421173f2a6e536f9b4f33ceca9a files/named.confd 319
MD5 668f9697d07bbf60b2040ed0c835d7f3 files/named.confd-r1 392
diff --git a/net-dns/bind/files/named.conf-r2 b/net-dns/bind/files/named.conf-r2
new file mode 100644
index 000000000000..f9ae4cc98814
--- /dev/null
+++ b/net-dns/bind/files/named.conf-r2
@@ -0,0 +1,42 @@
+options {
+ directory "/var/bind";
+
+ // uncomment the following lines to turn on DNS forwarding,
+ // and change the forwarding ip address(es) :
+ //forward first;
+ //forwarders {
+ // 123.123.123.123;
+ // 123.123.123.123;
+ //};
+
+ listen-on-v6 { none; };
+ listen-on { 127.0.0.1; };
+
+ // to allow only specific hosts to use the DNS server:
+ //allow-query {
+ // 127.0.0.1;
+ //};
+
+ // if you have problems and are behind a firewall:
+ //query-source address * port 53;
+ pid-file "/var/run/named/named.pid";
+};
+
+zone "." IN {
+ type hint;
+ file "named.ca";
+};
+
+zone "localhost" IN {
+ type master;
+ file "pri/localhost.zone";
+ allow-update { none; };
+ notify no;
+};
+
+zone "127.in-addr.arpa" IN {
+ type master;
+ file "pri/127.zone";
+ allow-update { none; };
+ notify no;
+};