blob: 0c54752779fe16389469ecdb049916e89ee26b74 (
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
40
41
42
43
|
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="reload"
# Defaults
: ${UNREALIRCD_USER:=unrealircd}
: ${UNREALIRCD_CONF:=/etc/unrealircd/${SVCNAME}.conf}
: ${UNREALIRCD_PIDFILE:=/run/unrealircd/${SVCNAME#unreal}.pid}
depend() {
use dns net
provide ircd
}
start() {
UNREALIRCD_PIDFILEDIR=${UNREALIRCD_PIDFILE%/*}
if ! [ -d "${UNREALIRCD_PIDFILEDIR}" ]; then
ebegin "Creating ${UNREALIRCD_PIDFILEDIR} for ${SVCNAME}"
mkdir "${UNREALIRCD_PIDFILEDIR}" \
&& chown :unrealircd "${UNREALIRCD_PIDFILEDIR}" \
&& chmod 770 "${UNREALIRCD_PIDFILEDIR}"
eend $?
fi
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start ${UNREALIRCD_SSD_OPTS} --exec /usr/bin/unrealircd \
--user ${UNREALIRCD_USER} --pidfile "${UNREALIRCD_PIDFILE}" -- -f "${UNREALIRCD_CONF}" ${UNREALIRCD_OPTS}
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop ${UNREALIRCD_SSD_OPTS} --pidfile "${UNREALIRCD_PIDFILE}"
eend $?
}
reload() {
ebegin "Reloading ${SVCNAME}"
start-stop-daemon --signal HUP ${UNREALIRCD_SSD_OPTS} --pidfile "${UNREALIRCD_PIDFILE}"
eend $?
}
|