#!/sbin/openrc-run # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ depend() { use dns net } start() { ebegin "Starting ultimateircd" start-stop-daemon --start --quiet --exec /usr/bin/ultimateircd \ --chuid ${ULTIMATEIRCD_USER} &>/dev/null eend $? } stop() { ebegin "Shutting down ultimateircd" start-stop-daemon --stop --pidfile /var/run/ultimateircd/ircd.pid eend $? }