#!/bin/sh
#PKG esound
#INIT 75
. /etc/rc.conf

case $1 in
autostart)
	test x"${esd:-NO}" = x"NO" && exit 0
	exec sh $0 start
	;;
start)
	esd -d /dev/sound/dsp -public -tcp -nobeeps
	;;
stop)
	killall esd
	;;
restart)
	sh $0 stop
	sh $0 start
	;;
*)
	echo "Usage: $0 {start | stop | restart}"
	;;
esac
exit 0