#!/sbin/runscript # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-physics/root/files/proofd.initd,v 1.2 2009/01/20 18:04:09 bicatali Exp $ depend() { need root-file-server use logger } start() { ebegin "Starting parallel ROOT facility server" start-stop-daemon --start --quiet \ --pidfile /var/run/proofd.pid \ --exec /usr/bin/proofd -- ${PROOFD_OPTS} ${PROOF_DIR} pidof /usr/bin/proofd > /var/run/proofd.pid eend $? } stop() { ebegin "Stopping parallel ROOT facility server" start-stop-daemon --stop --quiet \ --pidfile /var/run/proofd.pid \ --exec /usr/bin/proofd eend $? }