core/cdemu-daemon/cdemud.rc

36 lines
549 B
Plaintext
Raw Normal View History

2010-05-22 06:07:29 +08:00
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
start)
stat_busy "Starting cdemud"
2012-08-29 15:31:09 +08:00
/usr/lib/cdemu-daemon/cdemu-daemon-system.sh &
2010-05-22 06:07:29 +08:00
if [ $? -ne 0 ]; then
stat_fail
else
add_daemon cdemud
stat_done
fi
;;
stop)
stat_busy "Stopping cdemud"
2012-08-29 15:31:09 +08:00
kill `pidof cdemud` &>/dev/null
2010-05-22 06:07:29 +08:00
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
2012-08-29 15:31:09 +08:00