diff options
Diffstat (limited to 'net-irc/qwebirc/files')
-rw-r--r-- | net-irc/qwebirc/files/init-script | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net-irc/qwebirc/files/init-script b/net-irc/qwebirc/files/init-script new file mode 100644 index 0000000..2b35b6a --- /dev/null +++ b/net-irc/qwebirc/files/init-script @@ -0,0 +1,27 @@ +#!/sbin/runscript +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: qwebirc.initd,v 1.0 2011/03/11 12:11:50 lkraav Exp $ + +SVCHOME="/var/www/qwebirc" +LOGFILE="/var/log/qwebirc" + +depend() { + use net + need localmount + after bootmisc +} + +start() { + ebegin "Starting ${SVCNAME}" + start-stop-daemon --start --chuid qwebirc:qwebirc --chdir ${SVCHOME} \ + --quiet --exec ${SVCHOME}/run.py \ + -- -l ${LOGFILE} -p ${PORT} -P /var/run/qwebirc/${SVCNAME}.pid + eend $? +} + +stop() { + ebegin "Stopping ${SVCNAME}" + start-stop-daemon --stop --quiet --pidfile /var/run/qwebirc/${SVCNAME}.pid + eend $? +} |