blob: e766cce697f050af61cd0e46c38ced876bd4494e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/files/inspircd-init.d,v 1.1 2011/06/20 16:55:57 c1pher Exp $
opts="${opts} rehash"
depend() {
need net
provide ircd
}
start() {
ebegin "Starting InspIRCd"
start-stop-daemon --start --quiet --chuid inspircd \
--exec /usr/bin/inspircd -- \
--config /etc/inspircd/inspircd.conf \
--logfile /var/log/inspircd/ircd.log &> /dev/null
eend $?
}
stop() {
ebegin "Stopping InspIRCd"
start-stop-daemon --stop --quiet --exec /usr/bin/inspircd
eend $?
}
rehash() {
ebegin "Rehashing InspIRCd"
/usr/lib/inspircd/inspircd.launcher/inspircd rehash &> /dev/null
eend $?
}
|