summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/zarafa/files/zarafa-spooler.rc6')
-rw-r--r--net-mail/zarafa/files/zarafa-spooler.rc630
1 files changed, 0 insertions, 30 deletions
diff --git a/net-mail/zarafa/files/zarafa-spooler.rc6 b/net-mail/zarafa/files/zarafa-spooler.rc6
deleted file mode 100644
index 0a24b9c..0000000
--- a/net-mail/zarafa/files/zarafa-spooler.rc6
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-SPOOLERCONFIG=/etc/zarafa/spooler.cfg
-SPOOLERPROGRAM=/usr/bin/zarafa-spooler
-
-[ -x $SPOOLERPROGRAM ] || exit 0
-
-SPOOLERCONFIG_OPT=""
-[ ! -z $SPOOLERCONFIG -a -f $SPOOLERCONFIG ] && SPOOLERCONFIG_OPT="-c $SPOOLERCONFIG"
-
-PIDFILE=/var/run/"${SVCNAME}".pid
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start \
- --pidfile ${PIDFILE} \
- --exec ${SPOOLERPROGRAM} -- ${SPOOLERCONFIG_OPT}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop \
- --pidfile ${PIDFILE} \
- --exec ${SPOOLERPROGRAM} -- ${SPOOLERCONFIG_OPT}
- eend $?
-}