freebsd-ports/net/sflowtool/files/sflowtool.in

25 lines
524 B
Text
Raw Normal View History

#!/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"