updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / freenet-fms / rc.fms
blobd588a0718c42c7602789ec557c96e36a8c19dfcd
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 case "$1" in
7 start)
8 stat_busy "Starting fms"
9 cd /opt/fms/
10 su -c "./fms --daemon" fms
11 if [ $? -gt 0 ]; then
12 stat_fail
13 else
14 add_daemon fms
15 stat_done
18 stop)
19 stat_busy "Stopping fms"
20 kill $(ps -Af | awk '$8 ~ /fms/ { print $2 }')
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 rm_daemon fms
25 stat_done
28 restart)
29 $0 stop
30 sleep 1
31 $0 start
34 echo "usage: $0 {start|stop|restart}"
35 esac
36 exit 0