diff options
Diffstat (limited to 'app-sci/foldingathome/files/folding-init.d')
-rw-r--r-- | app-sci/foldingathome/files/folding-init.d | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app-sci/foldingathome/files/folding-init.d b/app-sci/foldingathome/files/folding-init.d index 2a6dc5b3898e..f4dbefa1e15c 100644 --- a/app-sci/foldingathome/files/folding-init.d +++ b/app-sci/foldingathome/files/folding-init.d @@ -1,10 +1,13 @@ #!/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.2 2003/02/27 10:23:31 aliz Exp $ start() { ebegin "Starting Folding@home" cd /opt/foldingathome - ./foldingathome >&/dev/null& + nice -n 19 ./foldingathome >&/dev/null& eend $? } |