#!/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 $? }