summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-biology/foldingathome/files/folding-init.d-r1')
-rw-r--r--sci-biology/foldingathome/files/folding-init.d-r129
1 files changed, 0 insertions, 29 deletions
diff --git a/sci-biology/foldingathome/files/folding-init.d-r1 b/sci-biology/foldingathome/files/folding-init.d-r1
deleted file mode 100644
index 86d2cc1cec30..000000000000
--- a/sci-biology/foldingathome/files/folding-init.d-r1
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2003 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/foldingathome/files/folding-init.d-r1,v 1.1 2004/12/23 18:37:10 ribosome Exp $
-
-start() {
- ebegin "Starting Folding@home"
- if [ ! -f /opt/foldingathome/client.cfg ]; then
- eerror "Can't start without initial configuration."
- eerror "For first run configuration, please run"
- eerror "/opt/foldingathome/initfolding"
- return 1
- fi
- cd /opt/foldingathome
- su foldingathome ./folding.sh
- eend $?
-}
-
-stop() {
- ebegin "Stopping Folding@Home"
- cd /opt/foldingathome
- for I in FahCore*.exe
- do
- killall -q $I >/dev/null
- done
- killall foldingathome >/dev/null
- eend $?
-}
-