summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2014-02-14 17:34:48 +0000
committerChristian Ruppert <idl0r@gentoo.org>2014-02-14 17:34:48 +0000
commit97b18813c1410258873f64e42fb967ef51532c7e (patch)
treea22236eb93e85ea6f042d3f912e0815055bb9592 /net-dns/bind
parentInitial commit wrt bug #501292. (diff)
downloadgentoo-2-97b18813c1410258873f64e42fb967ef51532c7e.tar.gz
gentoo-2-97b18813c1410258873f64e42fb967ef51532c7e.tar.bz2
gentoo-2-97b18813c1410258873f64e42fb967ef51532c7e.zip
Fix PIDFILE
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B427ABC8)
Diffstat (limited to 'net-dns/bind')
-rw-r--r--net-dns/bind/ChangeLog8
-rw-r--r--net-dns/bind/bind-9.9.5-r2.ebuild (renamed from net-dns/bind/bind-9.9.5-r1.ebuild)4
-rw-r--r--net-dns/bind/files/named.confd-r748
3 files changed, 57 insertions, 3 deletions
diff --git a/net-dns/bind/ChangeLog b/net-dns/bind/ChangeLog
index 1011247aad41..a6fc7cbdbbe8 100644
--- a/net-dns/bind/ChangeLog
+++ b/net-dns/bind/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-dns/bind
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.488 2014/01/31 21:24:49 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.489 2014/02/14 17:34:48 idl0r Exp $
+
+*bind-9.9.5-r2 (14 Feb 2014)
+
+ 14 Feb 2014; Christian Ruppert <idl0r@gentoo.org> -bind-9.9.5-r1.ebuild,
+ +bind-9.9.5-r2.ebuild, +files/named.confd-r7:
+ Fix PIDFILE
*bind-9.9.5-r1 (31 Jan 2014)
diff --git a/net-dns/bind/bind-9.9.5-r1.ebuild b/net-dns/bind/bind-9.9.5-r2.ebuild
index a05d2287cf36..f4089b310e01 100644
--- a/net-dns/bind/bind-9.9.5-r1.ebuild
+++ b/net-dns/bind/bind-9.9.5-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.9.5-r1.ebuild,v 1.1 2014/01/31 21:24:49 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.9.5-r2.ebuild,v 1.1 2014/02/14 17:34:48 idl0r Exp $
# Re dlz/mysql and threads, needs to be verified..
# MySQL uses thread local storage in its C api. Thus MySQL
@@ -255,7 +255,7 @@ src_install() {
newins "${FILESDIR}"/localhost.zone-r3 localhost.zone
newinitd "${FILESDIR}"/named.init-r13 named
- newconfd "${FILESDIR}"/named.confd-r6 named
+ newconfd "${FILESDIR}"/named.confd-r7 named
if use gost; then
sed -i -e 's/^OPENSSL_LIBGOST=${OPENSSL_LIBGOST:-0}$/OPENSSL_LIBGOST=${OPENSSL_LIBGOST:-1}/' "${D}/etc/init.d/named" || die
diff --git a/net-dns/bind/files/named.confd-r7 b/net-dns/bind/files/named.confd-r7
new file mode 100644
index 000000000000..477a4806151d
--- /dev/null
+++ b/net-dns/bind/files/named.confd-r7
@@ -0,0 +1,48 @@
+# Set various named options here.
+#
+#OPTIONS=""
+
+# Set this to the number of processors you want bind to use.
+# Leave this unchanged if you want bind to automatically detect the number
+#CPU="1"
+
+# If you wish to run bind in a chroot:
+# 1) un-comment the CHROOT= assignment, below. You may use
+# a different chroot directory but MAKE SURE it's empty.
+# 2) run: emerge --config =<bind-version>
+#
+#CHROOT="/chroot/dns"
+
+# Uncomment to enable binmount of /usr/share/GeoIP
+#CHROOT_GEOIP="1"
+
+# Uncomment the line below to avoid that the init script mounts the needed paths
+# into the chroot directory.
+# You have to copy all needed config files by hand if you say CHROOT_NOMOUNT="1".
+#CHROOT_NOMOUNT="1"
+
+# Uncomment this option if you have setup your own chroot environment and you
+# don't want/need the chroot consistency check
+#CHROOT_NOCHECK=1
+
+# Default pid file location
+PIDFILE="${CHROOT}/run/named/named.pid"
+
+# Scheduling priority: 19 is the lowest and -20 is the highest.
+# Default: 0
+#NAMED_NICELEVEL="0"
+
+# Uncomment rc_named_use/rc_named_after for the database you need.
+# Its necessary to ensure the database backend will be started before named.
+
+# MySQL
+#rc_named_use="mysql"
+#rc_named_after="mysql"
+
+# PostgreSQL
+#rc_named_use="pg_autovacuum postgresql"
+#rc_named_after="pg_autovacuum postgresql"
+
+# LDAP
+#rc_named_use="ldap"
+#rc_named_after="ldap"