blob: b30cb43d308bf0549020ecd0afda0c0e841f88c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
case $1 in
start)
test -d %%JDIR%% -a -x %%PREFIX%%/sbin/junkbuster -a -f %%JDIR%%/configfile || exit 1
cd %%JDIR%%
su -m nobody -c "%%PREFIX%%/sbin/junkbuster configfile &"
echo -n " junkbuster"
;;
stop)
killall junkbuster && echo -n " junkbuster"
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
exit 0
|