blob: 296439bf7df48f40da5ac45d5fa305a2f0ab5a1f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/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"
|