blob: a80c0fa6eb6e0a636b0fe4f388b982704c1695c2 (
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
|
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/foldingathome/files/6.34/fah-init,v 1.2 2011/06/15 17:41:48 je_fro Exp $
opts="${opts} unitinfo"
unitinfo() {
einfo "$(head -n1 /opt/foldingathome/unitinfo.txt):"
sed -e '1,2d' /opt/foldingathome/unitinfo.txt
}
start() {
ebegin "Starting Folding@Home"
cd /opt/foldingathome
start-stop-daemon --chdir ${PWD} --chuid foldingathome --nicelevel 19 \
--make-pidfile --pidfile "${PIDFILE}" \
--start --background --exec ./fah6 -- ${FOLD_OPTS}
eend $?
}
stop() {
ebegin "Stopping Folding@Home"
start-stop-daemon --stop --user foldingathome --pidfile "${PIDFILE}"
eend $?
killall --user foldingathome --signal SIGKILL
}
|