28 lines
412 B
Plaintext
28 lines
412 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
# PROVIDE: hastd
|
||
|
# REQUIRE: NETWORKING syslogd
|
||
|
# BEFORE: DAEMON
|
||
|
|
||
|
. /etc/rc.subr
|
||
|
|
||
|
name="hastd"
|
||
|
rcvar=`set_rcvar`
|
||
|
pidfile="/var/run/${name}.pid"
|
||
|
command="/sbin/${name}"
|
||
|
hastctl="/sbin/hastctl"
|
||
|
required_files="/etc/hast.conf"
|
||
|
stop_precmd="hastd_stop_precmd"
|
||
|
required_modules="geom_gate:g_gate"
|
||
|
|
||
|
hastd_stop_precmd()
|
||
|
{
|
||
|
${hastctl} role init all
|
||
|
}
|
||
|
|
||
|
load_rc_config $name
|
||
|
run_rc_command "$1"
|