blob: b9d95165cee942b374b462ceebcbc99d303655ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: hastd
# REQUIRE: NETWORKING syslogd
# BEFORE: DAEMON
# KEYWORD: nojail shutdown
. /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"
extra_commands="reload"
hastd_stop_precmd()
{
${hastctl} role init all
}
load_rc_config $name
run_rc_command "$1"
|