updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / opentracker / opentracker.rc.d
blobb1aa34c145e8c56ee696e485af8bedfc547bb466
1 #!/bin/bash
3 # general config
4 . /etc/rc.conf
5 . /etc/rc.d/functions
7 PID=`pidof -o %PPID /usr/bin/opentracker`
9 case "$1" in
10 start)
11 stat_busy "Starting opentracker Daemon"
12 [ -z "$PID" ] && su nobody -s /bin/sh -c "/usr/bin/opentracker -f /etc/opentracker/config&"
13 if [ $? -gt 0 ]; then
14 stat_fail
15 else
16 add_daemon opentracker
17 stat_done
20 stop)
21 stat_busy "Stopping opentracker Daemon"
22 [ ! -z "$PID" ] && kill $PID &>/dev/null
23 if [ $? -gt 0 ]; then
24 stat_fail
25 else
26 rm_daemon opentracker
27 stat_done
30 restart)
31 $0 stop
32 sleep 1
33 $0 start
36 echo "usage: $0 {start|stop|restart}"
37 esac