blob: d7168858ca91c136cbe3d68dcdd43174077d0262 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
case "$1" in
start)
if [ -f /usr/local/libexec/ebw3d \
-a -f /usr/local/etc/ebw3d.conf ]; then
/usr/local/libexec/ebw3d > /var/log/ebw3d.log 2>&1 &
echo -n ' ebw3d'
fi
;;
stop)
killall ebw3d && echo -n ' ebw3d'
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
|