You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
335 B
9 lines
335 B
#! /bin/sh |
|
PYTHON="@l_prefix@/bin/python" |
|
INSTANCE_HOME="@l_prefix@/var/zope" |
|
CONFIG_FILE="@l_prefix@/etc/zope/zope.conf" |
|
SOFTWARE_HOME="@l_prefix@/lib/zope" |
|
PYTHONPATH="$SOFTWARE_HOME/lib/python" |
|
export PYTHONPATH INSTANCE_HOME SOFTWARE_HOME |
|
ZDCTL="$PYTHONPATH/Zope2/Startup/zopectl.py" |
|
exec "$PYTHON" "$ZDCTL" -C "$CONFIG_FILE" "$@"
|
|
|