freebsd-ports/www/junkbuster/files/junkbuster.in
Doug Barton 1d6b4b3f91 Begin the process of deprecating sysutils/rc_subr by
s#. %%RC_SUBR%%#. /etc/rc.subr#
2010-03-27 00:15:24 +00:00

30 lines
626 B
Bash

#!/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=%%PREFIX%%/sbin/junkbuster
required_files=%%PREFIX%%/etc/junkbuster/configfile
start_cmd="ijb_start"
[ -z "${junkbuster_enable}" ] && junkbuster_enable="NO"
ijb_start()
{
cd %%PREFIX%%/etc/junkbuster
su -m nobody -c "%%PREFIX%%/sbin/junkbuster configfile &" >/dev/null
echo -n " junkbuster"
}
load_rc_config $name
run_rc_command "$1"