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