summaryrefslogtreecommitdiff
blob: f0825a1e90249c72e475c1f72f5abf520b4571ab (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
33
34
35
36
37
38
39
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

extra_commands="config"
extra_started_commands="reload save"

depend() {
	need net
}

start() {
	ebegin "Starting ZNC"
	start-stop-daemon --start --user ${ZNC_USER} --name znc \
		--exec /usr/bin/znc -- -d ${ZNC_CONF}
	eend $?
}

stop() {
	ebegin "Stopping ZNC"
	start-stop-daemon --signal SIGINT --name znc \
		--exec /usr/bin/znc -- -d ${ZNC_CONF}
	eend $?
}

reload() {
	ebegin "Reloading ZNC Configuration File from Disk"
	start-stop-daemon --signal SIGHUP --name znc \
		--exec /usr/bin/znc -- -d ${ZNC_CONF}
	eend $?
}

save() {
	ebegin "Saving ZNC Configuration File to Disk"
	start-stop-daemon --signal SIGUSR1 --name znc \
		--exec /usr/bin/znc -- -d ${ZNC_CONF}
	eend $?
}