summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-biology/foldingathome/files/7.3/fah-init')
-rw-r--r--sci-biology/foldingathome/files/7.3/fah-init30
1 files changed, 30 insertions, 0 deletions
diff --git a/sci-biology/foldingathome/files/7.3/fah-init b/sci-biology/foldingathome/files/7.3/fah-init
new file mode 100644
index 000000000000..1c1a232fb697
--- /dev/null
+++ b/sci-biology/foldingathome/files/7.3/fah-init
@@ -0,0 +1,30 @@
+#!/sbin/runscript
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $
+
+extra_commands="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} --user foldingathome --nicelevel 19 \
+ --make-pidfile --pidfile "${PIDFILE}" \
+ --start --background --exec ./FAHClient -- ${FOLD_OPTS}
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping Folding@Home"
+ start-stop-daemon --stop --user foldingathome --pidfile "${PIDFILE}"
+ if [ $? -ne 0 ]; then
+ killall --user foldingathome --signal SIGKILL
+ ewarn "killing all processes running as user 'foldingathome' ..."
+ fi
+ eend $?
+}