blob: 91a395a027da2564d580f452ff2b5b5f48a82aa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/bin/bash
#/etc/rc.d/foldingathome-v7
#
# Starts the Folding@Home-v7 client in the background
. /etc/rc.conf
. /etc/rc.d/functions
DAEMON=foldingathome-v7
#ARGS=
#[ -r /etc/conf.d/$DAEMON ] && . /etc/conf.d/$DAEMON
PID=$(pidof -x -o %PPID /opt/fah-v7/FAHClient)
case "${1}" in
start)
stat_busy "Starting $DAEMON"
[ -z "${PID}" ] && /opt/fah-v7/FAHClient --config /opt/fah-v7/config.xml --exec-directory=/opt/fah-v7 --data-directory=/opt/fah-v7 &> /dev/null &
add_daemon $DAEMON
if [ ! -z "$PID" -o $? -gt 0 ]; then
stat_fail
exit 1
else
stat_done
exit 1
fi
;;
stop)
stat_busy "Stopping $DAEMON"
[ ! -z "${PID}" ] && kill ${PID} &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon $DAEMON
stat_done
exit 1
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
|