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