mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
6 lines
166 B
Bash
6 lines
166 B
Bash
|
#!/bin/sh
|
||
|
test -d JDIR -a -x PREFIX/bin/junkbuster -a -f JDIR/configfile || exit 1
|
||
|
cd JDIR
|
||
|
su -m nobody -c "PREFIX/bin/junkbuster configfile &"
|
||
|
echo -n " junkbuster"
|