#!/bin/sh # # /etc/rc.d/esound: start/stop esound daemon # case $1 in start) /usr/bin/esd -nobeeps & ;; stop) killall -q /usr/bin/esd ;; restart) $0 stop sleep 2 $0 start ;; *) echo "usage: $0 [start|stop|restart]" ;; esac # End of file