#!/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 -public -tcp -nobeeps -noterminate &
	;;
stop)
	pkill esd
	;;
restart)
	sh $0 stop
	sh $0 start
	;;
*)
	echo "Usage: $0 {start | stop | restart}"
	;;
esac
exit 0