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

25 lines
465 B

#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnrd/files/dnrd,v 1.3 2005/09/03 08:27:55 chriswhite Exp $
PIDFILE="/var/run/dnrd.pid"
depend() {
provide dns
need net
}
start() {
ebegin "Starting dnrd"
/usr/sbin/dnrd $DNRD_OPTS &> /dev/null &
eend $?
}
stop() {
ebegin "Stopping dnrd"
/usr/sbin/dnrd -k
eend $?
}