core/cdemu-daemon/cdemud.rc
Michael HÃaesel ddcf6408d0 soundstack
2012-08-29 07:31:09 +00:00

36 lines
549 B
Bash

#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
start)
stat_busy "Starting cdemud"
/usr/lib/cdemu-daemon/cdemu-daemon-system.sh &
if [ $? -ne 0 ]; then
stat_fail
else
add_daemon cdemud
stat_done
fi
;;
stop)
stat_busy "Stopping cdemud"
kill `pidof cdemud` &>/dev/null
if [ $? -ne 0 ]; then
stat_fail
else
rm_daemon cdemud
stat_done
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac