27 lines
709 B
Plaintext
27 lines
709 B
Plaintext
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2014 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
LOGFILE=/var/log/spectrum2/std.log
|
||
|
|
||
|
depend() {
|
||
|
need net
|
||
|
use jabber-server
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
[ -d /var/run/spectrum2 ] || mkdir /var/run/spectrum2 && chown jabber:jabber /var/run/spectrum2 && chmod 750 /var/run/spectrum2
|
||
|
ebegin "Starting ${PROTOCOL} Spectrum Transport"
|
||
|
start-stop-daemon --start --user jabber --group jabber \
|
||
|
--exec /usr/bin/spectrum2_manager start &> $LOGFILE
|
||
|
eend $?
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping ${PROTOCOL} Spectrum Transport"
|
||
|
start-stop-daemon --user jabber --group jabber \
|
||
|
--exec /usr/bin/spectrum2_manager stop 1>>$LOGFILE 2>&1
|
||
|
eend $?
|
||
|
}
|