summaryrefslogtreecommitdiff
path: root/www/zope28/files/zope.sh.in
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-11-17 12:19:22 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-11-17 12:19:22 +0000
commitd615f4ca564f838b39bd8b504a3107011d951a03 (patch)
treed799b77773a040bd9f634696266507c9072dd071 /www/zope28/files/zope.sh.in
parentRemove do-package target that was running "make package" in (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_2_0'.release/4.2.0
Diffstat (limited to 'www/zope28/files/zope.sh.in')
-rw-r--r--www/zope28/files/zope.sh.in17
1 files changed, 0 insertions, 17 deletions
diff --git a/www/zope28/files/zope.sh.in b/www/zope28/files/zope.sh.in
deleted file mode 100644
index c8cb98f77348..000000000000
--- a/www/zope28/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