2008-01-14 02:05:43 +01:00
|
|
|
#!/sbin/runscript
|
|
|
|
# Copyright 1999-2007 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need net
|
|
|
|
use jabber-server
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
ebegin "Starting Palaver MUC service"
|
|
|
|
start-stop-daemon --start --pidfile /var/run/jabber/palaver.pid --chuid jabber:jabber \
|
2011-07-03 18:07:55 +02:00
|
|
|
--exec /usr/bin/twistd -- -f /etc/jabber/palaver.tap -l /var/log/jabber/palaver.log \
|
2008-01-14 02:05:43 +01:00
|
|
|
--pidfile /var/run/jabber/palaver.pid
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
ebegin "Stopping Palaver MUC service"
|
|
|
|
start-stop-daemon --stop --quiet --pidfile /var/run/jabber/palaver.pid
|
|
|
|
eend $?
|
|
|
|
}
|