freebsd-ports/www/zope29/files/zope.sh.in
Neil Blakey-Milner 0389061469 Update to Zope 2.2.1.
Zope shutdown bug fixed.
Reported by:	Marc Rassbach <marc@milestonerdl.com>
Reported by:	Jimmy Olgeni <olgeni@uli.it>

Zope startup bug fixed (I think).
2000-09-06 22:12:35 +00:00

17 lines
277 B
Bash

#!/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