1d6b4b3f91
s#. %%RC_SUBR%%#. /etc/rc.subr#
30 lines
626 B
Bash
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"
|