summaryrefslogtreecommitdiff
path: root/www/zope29/files/zope.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'www/zope29/files/zope.sh.in')
-rw-r--r--www/zope29/files/zope.sh.in17
1 files changed, 0 insertions, 17 deletions
diff --git a/www/zope29/files/zope.sh.in b/www/zope29/files/zope.sh.in
deleted file mode 100644
index c8cb98f77348..000000000000
--- a/www/zope29/files/zope.sh.in
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-start)
- nohup %%ZOPEBASEDIR%%/start -w '' -f '' -m '' -p %%CGIBINDIR%%/Zope.cgi >> %%ZOPEBASEDIR%%/var/zope-output &
- echo -n " Zope"
- ;;
-stop)
- %%ZOPEBASEDIR%%/stop
- echo -n " Zope"
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- ;;
-esac
-
-exit 0