#!/bin/sh
#
#
# PROVIDE: traff
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown

#
# Add the following lines to /etc/rc.conf to enable traff:
#
# traff_enable="YES"
#
#

. /etc/rc.subr

name=traff
rcvar=traff_enable


command=/usr/local/sbin/traff
pidfile=/var/run/traff.pid
required_files=/usr/local/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"

