#!/sbin/runscript # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { need net } start() { ebegin "Starting Quassel Core" start-stop-daemon --start --user $QUASSEL_USER --background --pidfile /var/run/quassel.pid \ --make-pidfile /var/run/quassel.pid --exec /usr/bin/quasselcore -- ${QUASSEL_OPTS} eend $? } stop() { ebegin "Stopping Quassel Core" start-stop-daemon --stop --user $QUASSEL_USER --pidfile /var/run/quassel.pid \ --exec /usr/bin/quasselcore eend $? }