blob: 9b6fc15802e8d5c508d8a2532ab24fa41475a96f (
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_started_commands="reload"
depend() {
use dns net
provide ircd
}
start() {
if ! [ -d /var/run/shadowircd ]; then
ebegin "Creating /var/run/shadowircd for ${SVCNAME}"
mkdir /var/run/shadowircd \
&& chown :shadowircd /var/run/shadowircd \
&& chmod 770 /var/run/shadowircd
eend $?
fi
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --exec /usr/bin/shadowircd-ircd \
--user shadowircd --pidfile /var/run/shadowircd/ircd.pid \
${SHADOWIRCD_OPTS}
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --pidfile /var/run/shadowircd/ircd.pid
eend $?
}
reload() {
ebegin "Reloading ${SVCNAME}"
start-stop-daemon --signal HUP --pidfile /var/run/shadowircd/ircd.pid
eend $?
}
|