summaryrefslogtreecommitdiff
path: root/source4/setup/named.conf
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-09-02 23:42:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:03:36 -0500
commitced6fc995f3bc9b00770ff1002a57f20d6b3e109 (patch)
treef543b9ea14a569a98678c02acc10ba9cda6cd128 /source4/setup/named.conf
parentb4aa01dcd192491e2f5f0c9b28d446d7a668ee74 (diff)
downloadsamba-ced6fc995f3bc9b00770ff1002a57f20d6b3e109.tar.gz
samba-ced6fc995f3bc9b00770ff1002a57f20d6b3e109.tar.bz2
samba-ced6fc995f3bc9b00770ff1002a57f20d6b3e109.zip
r24911: Make better use of substituted variables in example named.conf
Andrew Bartlett (This used to be commit 9f18a9711771a88be7c38bc26ae6e59fb98f93dd)
Diffstat (limited to 'source4/setup/named.conf')
-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}