summaryrefslogtreecommitdiff
path: root/www/zope213/files/zope.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'www/zope213/files/zope.sh.in')
-rw-r--r--www/zope213/files/zope.sh.in22
1 files changed, 0 insertions, 22 deletions
diff --git a/www/zope213/files/zope.sh.in b/www/zope213/files/zope.sh.in
deleted file mode 100644
index 727778464e0e..000000000000
--- a/www/zope213/files/zope.sh.in
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-start)
- umask 077
- %%ZOPEBASEDIR%%/bin/zopectl --daemon start > /dev/null 2>&1
- echo -n " Zope"
- ;;
-stop)
- %%ZOPEBASEDIR%%/bin/zopectl stop > /dev/null 2>&1
- echo -n " Zope"
- ;;
-restart)
- %%ZOPEBASEDIR%%/bin/zopectl restart > /dev/null 2>&1
- echo -n " Zope"
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- ;;
-esac
-
-exit 0