pkgsrc/net/bind96/files/lwresd.sh

25 lines
470 B
Bash

#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: lwresd.sh,v 1.3 2011/10/07 22:37:03 shattered Exp $
#
# PROVIDE: lwresd
# REQUIRE: SERVERS
. /etc/rc.subr
name="lwresd"
rcvar=${name}
command="@PREFIX@/sbin/${name}"
pidfile="@VARBASE@/run/lwresd/${name}.pid"
extra_commands="reload"
start_precmd="lwresd_precmd"
lwresd_precmd()
{
if [ ! -d @VARBASE@/run/lwresd ]; then
@MKDIR@ @VARBASE@/run/lwresd
fi
}
load_rc_config ${name} # check /etc/rc.conf.d/named9
run_rc_command "$1"