diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2011-09-01 15:20:13 +0000 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2011-09-01 15:20:13 +0000 |
commit | 8b0f070a8455b24773fbf93913ad871406d9e360 (patch) | |
tree | 1c3c0037e1460074e7d61a503fed401837505983 /net-dns | |
parent | Version bump #373651 by teidakankan. (diff) | |
download | gentoo-2-8b0f070a8455b24773fbf93913ad871406d9e360.tar.gz gentoo-2-8b0f070a8455b24773fbf93913ad871406d9e360.tar.bz2 gentoo-2-8b0f070a8455b24773fbf93913ad871406d9e360.zip |
Version bump to 9.8.1. Add "dnssec-validation auto" example to named.conf.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/bind/ChangeLog | 8 | ||||
-rw-r--r-- | net-dns/bind/bind-9.8.1.ebuild (renamed from net-dns/bind/bind-9.8.0_p4.ebuild) | 5 | ||||
-rw-r--r-- | net-dns/bind/files/named.conf-r5 | 7 |
3 files changed, 17 insertions, 3 deletions
diff --git a/net-dns/bind/ChangeLog b/net-dns/bind/ChangeLog index 0e12d2ca138a..7d75a16399b1 100644 --- a/net-dns/bind/ChangeLog +++ b/net-dns/bind/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-dns/bind # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.348 2011/07/09 16:31:30 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.349 2011/09/01 15:20:13 idl0r Exp $ + +*bind-9.8.1 (01 Sep 2011) + + 01 Sep 2011; Christian Ruppert <idl0r@gentoo.org> -bind-9.8.0_p4.ebuild, + +bind-9.8.1.ebuild, files/named.conf-r5: + Version bump to 9.8.1. Add "dnssec-validation auto" example to named.conf. 09 Jul 2011; Raúl Porcel <armin76@gentoo.org> bind-9.7.3_p3.ebuild: alpha/arm/ia64/s390/sh/sparc stable wrt #374201 diff --git a/net-dns/bind/bind-9.8.0_p4.ebuild b/net-dns/bind/bind-9.8.1.ebuild index 85cdb5e37b5e..8a04818367f8 100644 --- a/net-dns/bind/bind-9.8.0_p4.ebuild +++ b/net-dns/bind/bind-9.8.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.8.0_p4.ebuild,v 1.4 2011/07/09 14:44:43 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.8.1.ebuild,v 1.1 2011/09/01 15:20:13 idl0r Exp $ EAPI="3" @@ -105,7 +105,8 @@ src_prepare() { if use geoip; then cp "${DISTDIR}"/${GEOIP_PATCH_A} "${S}" || die - sed -i -e 's:RELEASEVER=1:RELEASEVER=4:' ${GEOIP_PATCH_A} || die + sed -i -e 's:RELEASETYPE=-P:RELEASETYPE=:' \ + -e 's:RELEASEVER=1:RELEASEVER=:' ${GEOIP_PATCH_A} || die epatch ${GEOIP_PATCH_A} fi diff --git a/net-dns/bind/files/named.conf-r5 b/net-dns/bind/files/named.conf-r5 index 20dfa7999470..aab639f5982d 100644 --- a/net-dns/bind/files/named.conf-r5 +++ b/net-dns/bind/files/named.conf-r5 @@ -90,6 +90,13 @@ options { //dnssec-enable yes; //dnssec-validation yes; + /* + * As of bind 9.8.0: + * "If the root key provided has expired, + * named will log the expiration and validation will not work." + */ + //dnssec-validation auto; + /* if you have problems and are behind a firewall: */ //query-source address * port 53; }; |