#!/sbin/runscript # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # /space/gentoo/cvsroot/gentoo-x86/sys-apps/xinetd/files/xinetd.rc6,v 1.11 2002/01/23 04:40:29 woodchip Exp # Author: Maik Schreiber start() { ebegin "Starting distcc daemon" start-stop-daemon --start --quiet \ --exec /usr/bin/distccd eend $? } stop() { ebegin "Stopping distcc daemon" start-stop-daemon --stop --quiet \ --exec /usr/bin/distccd eend $? }