#!/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
