You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-dns/dnrd/files/dnrd

27 lines
444 B

#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License, v2 or later
PIDFILE="/var/run/dnrd.pid"
depend() {
provide dns
need net
}
start() {
ebegin "Starting dnrd"
start-stop-daemon --start \
--pidfile ${PIDFILE} \
--exec /usr/sbin/dnrd \
-- ${DNRD_OPTS}
eend $?
}
stop() {
ebegin "Stopping dnrd"
start-stop-daemon --stop --quiet --pidfile ${PIDFILE}
eend $?
}