31 lines
705 B
Plaintext
31 lines
705 B
Plaintext
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2008 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
MONITORCONFIG=/etc/zarafa/monitor.cfg
|
||
|
MONITORPROGRAM=/usr/bin/zarafa-monitor
|
||
|
|
||
|
[ -x $MONITORPROGRAM ] || exit 0
|
||
|
|
||
|
MONITORCONFIG_OPT=""
|
||
|
[ ! -z $MONITORCONFIG -a -f $MONITORCONFIG ] && MONITORCONFIG_OPT="-c $MONITORCONFIG"
|
||
|
|
||
|
PIDFILE=/var/run/"${SVCNAME}".pid
|
||
|
|
||
|
start() {
|
||
|
ebegin "Starting ${SVCNAME}"
|
||
|
start-stop-daemon --start \
|
||
|
--pidfile ${PIDFILE} \
|
||
|
--exec ${MONITORPROGRAM} -- ${MONITORCONFIG_OPT}
|
||
|
eend $?
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping ${SVCNAME}"
|
||
|
start-stop-daemon --stop \
|
||
|
--pidfile ${PIDFILE} \
|
||
|
--exec ${MONITORPROGRAM} -- ${MONITORCONFIG_OPT}
|
||
|
eend $?
|
||
|
}
|