diff options
Diffstat (limited to 'www/zope211/files/zope.sh.in')
-rw-r--r-- | www/zope211/files/zope.sh.in | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/www/zope211/files/zope.sh.in b/www/zope211/files/zope.sh.in deleted file mode 100644 index 616a53f07eec..000000000000 --- a/www/zope211/files/zope.sh.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - umask 077 - nohup %%ZOPEBASEDIR%%/start \ - -w %%ZOPE_HTTP_PORT%% \ - -f %%ZOPE_FTP_PORT%% \ - -m %%ZOPE_MONITOR_PORT%% \ - -u %%ZOPE_USER%% \ - -p %%CGIBINDIR%%/Zope.cgi \ - >> %%ZOPEBASEDIR%%/var/zope-output 2>&1 & - echo -n " Zope" - ;; -stop) - %%ZOPEBASEDIR%%/stop - echo -n " Zope" - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 |