#!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-sci/foldingathome/files/folding-init.d,v 1.4 2003/05/05 20:03:38 aliz Exp $ start() { ebegin "Starting Folding@home" cd /opt/foldingathome nice -n 19 ./foldingathome >&/dev/null& 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 $? }