can anyone out there help me get a start script together for zope2.3.3 on freebsd4.2? i tried editing Markoer's redhat script, and all i get is "case: Too many agruements"... please help. thanks, shaun
Hi Shaun, Here's what I have in /usr/local/etc/rc.d/zope.sh: ----------------------------- #!/bin/sh # case "$1" in start) echo -n ' zope' cd /usr/local/etc/Zope2a su zope -c './start' cd /usr/local/etc/Zope2b su zope -c './start' cd /usr/local/etc/Zope2c su zope -c './start' ;; stop) cd /usr/local/etc/Zope2a su zope -c './stop' cd /usr/local/etc/Zope2b su zope -c './stop' cd /usr/local/etc/Zope2c su zope -c './stop' ;; *) echo "usage: $0 {start|stop}" 1>&2 exit 64 ;; esac ----------------------------- The zope servers run as the user 'zope'. I have the source-installs at /usr/local/etc/Zope2[abc]. Is that what you want? -steve On Thursday, August 16, 2001, at 11:50 PM, zope wrote:
can anyone out there help me get a start script together for zope2.3.3 on freebsd4.2? i tried editing Markoer's redhat script, and all i get is "case: Too many agruements"... please help. thanks, shaun
participants (2)
-
Steve Spicklemire -
zope