83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
36 lines
488 B
Bash
36 lines
488 B
Bash
#!/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"
|
|
|
|
ladvd_check()
|
|
{
|
|
if [ -z "${ladvd_flags}" ]
|
|
then
|
|
err 1 "ladvd_flags should be set"
|
|
fi
|
|
}
|
|
|
|
run_rc_command "$1"
|