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.
24 lines
524 B
Bash
24 lines
524 B
Bash
#!/bin/sh
|
|
#
|
|
# PROVIDE: sflowtool
|
|
# REQUIRE: DAEMON
|
|
|
|
# Add the following line to /etc/rc.conf to enable sflowtool:
|
|
# sflowtool_enable="YES"
|
|
# sflowtool_flags="<set as needed>"
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="sflowtool"
|
|
rcvar=sflowtool_enable
|
|
command="%%PREFIX%%/bin/sflowtool"
|
|
|
|
load_rc_config $name
|
|
# Set defaults
|
|
: ${sflowtool_enable="NO"}
|
|
: ${sflowtool_pidfile="/var/run/${name}.pid"}
|
|
|
|
start_cmd="/usr/sbin/daemon -f -p ${sflowtool_pidfile} ${command} ${sflowtool_flags}"
|
|
start_postcmd="echo Starting ${name}."
|
|
|
|
run_rc_command "$1"
|