aports/community/pdns/pdns.initd
tcely cdca14c596 community/pdns: use guardian mode
This fixes the reload command which relies on the guardian
to cycle the running instance.

fixes #7885
2019-01-16 20:06:42 +00:00

39 lines
718 B
Plaintext

#!/sbin/openrc-run
extra_started_commands="dump reload"
instance_name="${RC_SVCNAME#pdns[.-]}"
if [ "$instance_name" != "$RC_SVCNAME" ]; then
pdns_config="--config-name=$instance_name"
else
pdns_config=""
instance_name="default"
fi
name="PowerDNS ($instance_name)"
command="/usr/sbin/pdns_server"
command_args="${command_args:-} --guardian=yes --daemon=no --write-pid=no $pdns_config"
command_background="yes"
pidfile="/run/$RC_SVCNAME.pid"
pdns_control="/usr/bin/pdns_control"
depend() {
need net
after firewall
}
reload() {
ebegin "Reloading $name"
"$pdns_control" $pdns_config cycle >/dev/null 2>&1
eend $?
}
dump() {
ebegin "Dumping $name variables"
"$pdns_control" $pdns_config list
eend $?
}