mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
0389061469
Zope shutdown bug fixed. Reported by: Marc Rassbach <marc@milestonerdl.com> Reported by: Jimmy Olgeni <olgeni@uli.it> Zope startup bug fixed (I think).
18 lines
277 B
Bash
18 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
|