You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-irc/shadowircd/files/shadowircd.initd

39 lines
857 B

#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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 $?
}