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.
28 lines
460 B
Bash
28 lines
460 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: dbeacon
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable dbeacon.
|
|
#
|
|
# dbeacon_enable="YES"
|
|
# dbeacon_flags="" Extra flags passed to start command.
|
|
#
|
|
# See dbeacon(1) for flags.
|
|
|
|
dbeacon_enable=${dbeacon_enable-"NO"}
|
|
dbeacon_flags=${dbeacon_flags-""}
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="dbeacon"
|
|
rcvar=dbeacon_enable
|
|
|
|
command="%%PREFIX%%/bin/${name}"
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|