slackbuilds/network/nsd
Robby Workman 8679fda5af
network/nsd: Fix logrotate file for non-root /var/log subdir
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2021-07-19 16:23:33 +07:00
..
README
doinst.sh
localhost.zone
nsd.SlackBuild network/nsd: Create piddir during init 2021-07-19 16:23:33 +07:00
nsd.conf
nsd.info network/nsd: Updated for version 4.3.3. 2020-10-31 11:15:26 +07:00
nsd.logrotate network/nsd: Fix logrotate file for non-root /var/log subdir 2021-07-19 16:23:33 +07:00
rc.nsd network/nsd: Create piddir during init 2021-07-19 16:23:33 +07:00
slack-desc network/nsd: Updated for version 4.3.3. 2020-10-31 11:15:26 +07:00

README

NSD is being developed with the purpose of creating more diversity in the
DNS landscape. Secondly we want to create a fast, modern, RFC compliant
nameserver.

NSD requires its own user in order to run securely. It is not advised to
run services as root user without special reason.


To add NSD user in system run as root:

# groupadd -g 336 nsd
# useradd -u 336 -d /var/lib/nsd -g nsd -s /bin/false nsd


In order to run NSD during boot process, add to /etc/rc.d/rc.local :

if [ -x /etc/rc.d/rc.nsd ]; then
  /etc/rc.d/rc.nsd start
fi