summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-09-02 23:43:25 +0200
committerStefan Metzmacher <metze@samba.org>2007-12-21 03:32:22 +0100
commit3afdc12b96c0e249a9e4ff665c3b2147a99381a9 (patch)
treed7e5f26a04dfb3a7cf1fccd4f49f0e8a1a52e7a0
parent6e3ed3758f10ec3d8452202bcd5306a8a50cdbd9 (diff)
downloadsamba-3afdc12b96c0e249a9e4ff665c3b2147a99381a9.tar.gz
samba-3afdc12b96c0e249a9e4ff665c3b2147a99381a9.tar.bz2
samba-3afdc12b96c0e249a9e4ff665c3b2147a99381a9.zip
r24912: Merge 'use more substituted variables' patch to release branch.
Andrew Bartlett (This used to be commit 075147ff1c2679b74d6e28c3ca401453b684bee0)
-rw-r--r--source4/setup/named.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/setup/named.conf b/source4/setup/named.conf
index 6f97adf644..17beb7a2d7 100644
--- a/source4/setup/named.conf
+++ b/source4/setup/named.conf
@@ -22,15 +22,15 @@ zone "${DNSDOMAIN}." IN {
# for named: KRB5_KTNAME so that it points to the keytab generated.
# In RedHat derived systems such RHEL/CentOS/Fedora you can add the following
# line to the /etc/sysconfig/named file:
-# export KRB5_KTNAME=${DNS_KEYTAB}
+# export KRB5_KTNAME=${DNS_KEYTAB_ABS}
#
# Please note that most distributions have BIND configured to run under
# a non-root user account. For example, Fedora Core 6 (FC6) runs BIND as
# the user "named" once the daemon relinquishes its rights. Therefore,
-# the file "dns.keytab" must be readable by the user that BIND run as.
-# If BIND is running as a non-root user, the "dns.keytab" file must have its
+# the file "${DNS_KEYTAB}" must be readable by the user that BIND run as.
+# If BIND is running as a non-root user, the "${DNS_KEYTAB}" file must have its
# permissions altered to allow thge daemon to read it. In the FC6
# example, execute the commands:
#
-# chgrp named /usr/local/samba/private/dns.keytab
-# chmod g+r /usr/local/samba/private/dns.keytab
+# chgrp named ${DNS_KEYTAB_ABS}
+# chmod g+r ${DNS_KEYTAB_ABS}