#!/sbin/runscript # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: depend() { need net } start() { ebegin "Starting ggzd" start-stop-daemon --start --quiet --exec /usr/bin/ggzd eend $? } stop() { ebegin "Stopping ggzd" start-stop-daemon --stop --quiet --exec /usr/bin/ggzd eend $? }