#!/bin/sh

# PROVIDE: junkbuster
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON

#
# Add the following lines to /etc/rc.conf to enable junkbuster:
# junkbuster_enable (bool):	Set to "NO" by default.
#				Set it to "YES" to enable junkbuster
#

. /etc/rc.subr

name="junkbuster"
command=/usr/local/sbin/junkbuster
required_files=/usr/local/etc/junkbuster/configfile
start_cmd="ijb_start"

[ -z "${junkbuster_enable}" ] && junkbuster_enable="NO"

ijb_start()
{
	cd /usr/local/etc/junkbuster
	su -m nobody -c "/usr/local/sbin/junkbuster configfile &" >/dev/null
	echo -n " junkbuster"
}

load_rc_config $name
run_rc_command "$1"
