blob: a933304c266b00b2b7db167fdb4012349bf6af93 (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/bin/sh
#
# PROVIDE: ladvd
# REQUIRE: DAEMON
#
# Add the following lines to /etc/rc.conf to enable ladvd:
#
#ladvd_enable="YES"
#
# See ladvd(8) for flags.
#
. /etc/rc.subr
name=ladvd
rcvar=ladvd_enable
command=%%PREFIX%%/sbin/ladvd
load_rc_config ${name}
# set defaults
ladvd_enable=${ladvd_enable:-"NO"}
ladvd_flags=${ladvd_flags:-"-a"}
start_precmd="ladvd_check"
stop_postcmd="ladvd_cleanup"
ladvd_check()
{
if [ -z "${ladvd_flags}" ]
then
err 1 "ladvd_flags should be set"
fi
}
ladvd_cleanup()
{
if [ -f "$pidfile" ]; then
kill -0 `cat $pidfile` 2> /dev/null
if [ $? -ne 0 ]; then
rm $pidfile
fi
fi
}
run_rc_command "$1"
|