blob: d598ad6eb56dfd456188106fa0df7d8a21017241 (
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
47
48
49
|
#!/bin/sh
#
# /etc/rc.d/boinc: start/stop boinc daemon
#
# User settings here
DAEMON=boinc
OPTIONS=" --dir ###BOINC_HOME### --daemon"
RUN_AS_USER=boinc
# Check for configuration files
# [ -f /etc/tor/torrc ] || exit 1
# If you have to edit this section for this or any other
# port useage let me know, with a patch or added lines,
# or simplely e-mail me the altered file and I'll include the changes.
RETVAL=0
case $1 in
start)
echo -n "Starting $DAEMON..."
su $RUN_AS_USER -c "/usr/bin/$DAEMON$OPTIONS" > /dev/null
RETVAL=$?
if [ $RETVAL = 0 ]; then
echo " done."
fi
;;
stop)
echo -n "Shutting down $DAEMON..."
killall -q /usr/bin/$DAEMON
RETVAL=$?
echo " done."
;;
restart)
$0 stop
sleep 5
$0 start
RETVAL=$?
;;
*)
echo "usage: $0 [start|stop|restart]"
exit 1
;;
esac
exit $RETVAL
# End of file
|