diff options
Diffstat (limited to 'sci-mathematics/gimps/files/gimps-init.d')
-rwxr-xr-x | sci-mathematics/gimps/files/gimps-init.d | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/sci-mathematics/gimps/files/gimps-init.d b/sci-mathematics/gimps/files/gimps-init.d deleted file mode 100755 index e5f2f38832af..000000000000 --- a/sci-mathematics/gimps/files/gimps-init.d +++ /dev/null @@ -1,28 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net -} - -checkconfig() { - if [ ! -e "${GIMPS_DIR}" ] - then - einfo "Creating ${GIMPS_DIR}" - mkdir "${GIMPS_DIR}" - fi -} - -start() { - checkconfig - ebegin "Starting GIMPS" - /opt/gimps/mprime -b${GIMPS_CPUS} -w${GIMPS_DIR} ${GIMPS_OPTIONS} - eend $? -} - -stop() { - ebegin "Stopping GIMPS" - killall mprime - eend $? -} |