2021-09-16 04:52:54 +02:00
|
|
|
# User to run named as:
|
2021-09-25 03:05:55 +02:00
|
|
|
NAMED_USER=named
|
2021-09-16 04:52:54 +02:00
|
|
|
|
2023-11-07 20:57:12 +01:00
|
|
|
# Group to use for named related files and directories.
|
2021-09-25 03:05:55 +02:00
|
|
|
# By default, named will also run as the primary group of $NAMED_USER,
|
|
|
|
# which will usually be the same as what's listed below, but not
|
|
|
|
# necessarily if something other than the default of "named" is used.
|
|
|
|
NAMED_GROUP=named
|
2021-09-16 04:52:54 +02:00
|
|
|
|
2021-09-25 03:05:55 +02:00
|
|
|
# Options to run named with. At least -u $NAMED_USER is required, but
|
|
|
|
# additional options may be added if needed.
|
|
|
|
NAMED_OPTIONS="-u $NAMED_USER"
|
2023-11-07 20:57:12 +01:00
|
|
|
|
|
|
|
# If this is set to YES, then before starting named the startup script
|
|
|
|
# will make sure that /etc/rndc.key (if it exists) and the enitre contents
|
|
|
|
# of /var/named are chowned to $NAMED_USER:$NAMED_GROUP. If some of these
|
2023-11-08 23:04:25 +01:00
|
|
|
# files are improperly owned, named will refuse to start or may not work
|
2023-11-07 20:57:12 +01:00
|
|
|
# properly. This is also a useful setting when upgrading from an older BIND
|
|
|
|
# package that would run as root.
|
|
|
|
#
|
2023-12-02 21:46:52 +01:00
|
|
|
# If NAMED_CHOWN is set to anything other than YES (or is unset), then these
|
|
|
|
# files will not be chowned automatically and the admin will handle any
|
|
|
|
# required file ownerships.
|
2023-11-07 20:57:12 +01:00
|
|
|
NAMED_CHOWN=NO
|