updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / scmpc / scmpcd
blob92d721e4fb8294dfa616698d15ad119a1e2764e2
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 PID=`pidof -o %PPID /usr/bin/scmpc`
7 case "$1" in
8 start)
9 stat_busy "Starting scmpc daemon"
10 /usr/bin/scmpc -f /etc/scmpc.conf
11 if [ $? -gt 0 ]; then
12 stat_fail
13 else
14 stat_done
15 add_daemon scmpcd
18 stop)
19 stat_busy "Stopping scmpc daemon"
20 [ ! -z "$PID" ] && kill $PID &> /dev/null
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 stat_done
25 rm_daemon scmpcd
28 restart)
29 $0 stop
30 sleep 1
31 $0 start
34 echo "usage: $0 {start|stop|restart}"
36 esac