blob: 2cca4925ef84d150ea66d3c7a602cb0ab31a654f (
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
|
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
PIDFILE=/run/anope/services.pid
extra_started_commands="reload"
depend() {
use ircd
}
start_pre() {
checkpath -o ${ANOPE_USER} -d "$(dirname $PIDFILE)"
}
start() {
ebegin "Starting Anope IRC Services"
start-stop-daemon --start --exec /usr/bin/services \
--user ${ANOPE_USER} --pidfile ${PIDFILE} \
-- ${ANOPE_OPTS}
eend $?
}
stop() {
ebegin "Stopping Anope IRC Services"
start-stop-daemon --stop --pidfile ${PIDFILE}
eend $?
}
reload() {
ebegin "Reloading Anope IRC Services"
start-stop-daemon --signal USR2 --exec /usr/bin/services \
--pidfile ${PIDFILE}
eend $?
}
|