aboutsummaryrefslogtreecommitdiffstats
path: root/main/ngircd/ngircd.initd
blob: c463763e76c2be49d9c72195131cdb83fac3cc1e (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
#!/sbin/openrc-run
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/ngircd/files/ngircd.init.d,v 1.3 2006/01/02 15:31:27 swegener Exp $

extra_started_commands="reload"

depend() {
	need net
	after firewall
	provide ircd
}

start() {
	ebegin "Starting ngIRCd"
	start-stop-daemon --start --quiet --exec /usr/sbin/ngircd
	eend $? "Failed to start ngIRCd"
}

stop() {
	ebegin "Stopping ngIRCd"
	start-stop-daemon --stop --quiet --exec /usr/sbin/ngircd
	eend $? "Failed to stop ngIRCd"
}

reload() {
        ebegin "Reloading ngIRCd"
        start-stop-daemon --stop --signal HUP --quiet --oknodo \
          --exec /usr/sbin/ngircd
        eend $? "Failed to reload ngIRCd"
}