2000-03-10 11:53:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2000-05-13 08:45:06 +00:00
|
|
|
# $NetBSD: named,v 1.5 2000/05/13 08:45:07 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
|
|
|
|
|
|
|
|
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-05-13 08:45:06 +00:00
|
|
|
load_rc_config $name
|
2000-04-30 13:23:04 +00:00
|
|
|
run_rc_command "$1"
|