c49d1a3273
We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts.
39 lines
477 B
Bash
39 lines
477 B
Bash
#!/bin/sh
|
|
#
|
|
#
|
|
# PROVIDE: traff
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable traff:
|
|
#
|
|
# traff_enable="YES"
|
|
#
|
|
#
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=traff
|
|
rcvar=`set_rcvar`
|
|
|
|
|
|
command=%%PREFIX%%/sbin/traff
|
|
pidfile=/var/run/traff.pid
|
|
required_files=%%PREFIX%%/etc/traff.conf
|
|
|
|
stop_postcmd=stop_postcmd
|
|
|
|
stop_postcmd()
|
|
{
|
|
rm -f $pidfile
|
|
}
|
|
|
|
# set defaults
|
|
|
|
traff_enable=${traff_enable:-"NO"}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
|