#!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-irc/dancer-ircd/files/dancer-ircd,v 1.6 2005/01/23 22:07:46 swegener Exp $ depend() { use net } start() { ebegin "Starting dancer-ircd" start-stop-daemon --start --quiet --exec /usr/bin/dancer-ircd eend $? } stop() { ebegin "Stopping dancer-ircd" start-stop-daemon --stop --quiet --pidfile /var/run/dancer-ircd.pid eend $? }