From 7d0b31af62ca1e4c10554f6906424f62b70c50fb Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Thu, 8 Sep 2011 21:32:20 +0200 Subject: net-irc/qwebirc: added ebuild --- net-irc/qwebirc/files/init-script | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 net-irc/qwebirc/files/init-script (limited to 'net-irc/qwebirc/files/init-script') 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 $? +} -- cgit v1.2.3