Files
@ 8900cf1d2d77
Branch filter:
Location: ohnobinki_overlay/net-irc/unrealircd/files/unrealircd.rc - annotation
8900cf1d2d77
640 B
text/plain
SLOT build because packages which use it have /usr/include/build- hard-coded into them.
f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 f17c49fa1c90 | #!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/files/unrealircd.rc,v 1.7 2004/10/09 20:36:31 swegener Exp $
opts="reload start stop"
depend() {
use dns net
provide ircd
}
start() {
ebegin "Starting unrealircd"
start-stop-daemon --start --quiet --exec /usr/bin/unrealircd \
--chuid ${UNREALIRCD_USER} -- ${UNREALIRCD_OPTS} &>/dev/null
eend $?
}
stop() {
ebegin "Shutting down unrealircd"
killall unrealircd
eend $?
}
reload() {
ebegin "Re-Loading unrealircd"
killall -1 unrealircd
eend $?
}
|