summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/zarafa/files/zarafa-server.rc6')
-rw-r--r--www-apps/zarafa/files/zarafa-server.rc635
1 files changed, 0 insertions, 35 deletions
diff --git a/www-apps/zarafa/files/zarafa-server.rc6 b/www-apps/zarafa/files/zarafa-server.rc6
deleted file mode 100644
index 41d3a20..0000000
--- a/www-apps/zarafa/files/zarafa-server.rc6
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-SERVERCONFIG=/etc/zarafa/server.cfg
-SERVERPROGRAM=/usr/bin/zarafa-server
-
-[ -x $SERVERPROGRAM ] || exit 0
-
-SERVERCONFIG_OPT=""
-[ ! -z $SERVERCONFIG -a -f $SERVERCONFIG ] && SERVERCONFIG_OPT="-c $SERVERCONFIG"
-
-PIDFILE=/var/run/"${SVCNAME}".pid
-
-depend() {
- need mysql
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start \
- --pidfile ${PIDFILE} \
- --exec ${SERVERPROGRAM} -- ${SERVERCONFIG_OPT}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop \
- --pidfile ${PIDFILE} \
- --retry 65 \
- --exec ${SERVERPROGRAM} -- ${SERVERCONFIG_OPT}
- eend $?
-}