blob: c9abc7fd83e8d3b01fb055c4d65841046ccda680 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/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/charybdis/files/charybdis-ircd.initd,v 1.2 2008/01/08 21:17:02 jokey Exp $
depend() {
use net
provide ircd
}
start() {
ebegin "Starting shadowircd"
start-stop-daemon --start --quiet -u ${SHADOWIRCD_USER} --exec /usr/bin/ircd -- -configfile ${SHADOWIRCD_CONF}>/dev/null
eend $?
}
stop() {
ebegin "Stopping shadowircd"
start-stop-daemon --stop --quiet --pidfile ${SHADOWIRCD_PID}
eend $?
}
|