blob: 529ca7dca9410e15ab73628e2d9cb68b9d81001f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: nsd.sh,v 1.1 2005/11/05 21:27:53 joerg Exp $
#
# PROVIDE: nsd
# REQUIRE: DAEMON
#
. /etc/rc.subr
name="nsd"
rcvar=${name}
required_files="@PKG_SYSCONFDIR@/nsd/nsd.zones @NSDDB@"
command=/usr/pkg/sbin/${name}
pidfile=/var/run/${name}.pid
nsd_flags=${nsd_flags:-""}
load_rc_config ${name}
run_rc_command "$1"
|