2000-03-10 11:53:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2000-05-13 03:46:42 +00:00
|
|
|
# $NetBSD: named,v 1.4 2000/05/13 03:46:42 lukem Exp $
|
2000-03-10 11:53:23 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: named
|
2000-03-13 04:03:52 +00:00
|
|
|
# REQUIRE: SERVERS
|
2000-03-10 11:53:23 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
. /etc/rc.conf
|
|
|
|
|
|
|
|
name="named"
|
|
|
|
command="/usr/sbin/${name}"
|
|
|
|
pidfile="/var/run/${name}.pid"
|
2000-05-13 03:46:42 +00:00
|
|
|
|
|
|
|
extra_commands="reload"
|
2000-03-10 11:53:23 +00:00
|
|
|
|
2000-04-30 13:23:04 +00:00
|
|
|
run_rc_command "$1"
|