diff options
Diffstat (limited to 'www/zope28/files/zope.sh')
-rw-r--r-- | www/zope28/files/zope.sh | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/www/zope28/files/zope.sh b/www/zope28/files/zope.sh new file mode 100644 index 000000000000..62528a17de5f --- /dev/null +++ b/www/zope28/files/zope.sh @@ -0,0 +1,53 @@ +#!/bin/sh + +# Start or stop zope +# $FreeBSD: /tmp/pcvs/ports/www/zope28/files/Attic/zope.sh,v 1.1 2004-04-20 14:18:32 perky Exp $ + +# PROVIDE: zope +# REQUIRE: DAEMON +# BEFORE: LOGIN +# KEYWORD: FreeBSD shutdown +# +prefix=%%PREFIX%% + +# Define these zope_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# /etc/rc.conf.d/gkrellmd +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +zope_enable=${zope_enable:-"NO"} # Enable gkrellmd +zope_instances=${zope_instances:-""} # List of instancehome dirs + +. %%RC_SUBR%% + +name="zope" +rcvar=`set_rcvar` +load_rc_config $name + +if checkyesno zope_enable; then + + case "$1" in + start) + echo "Starting Zope" + ;; + stop) + echo "Stopping Zope" + ;; + restart) + echo "Restarting Zope" + ;; + *) + echo "Unknown aktion \"$1\"" + ;; + esac + + for instance in $zope_instances + do + if [ -r ${instance}/etc/${name}.conf -a -x ${instance}/bin/zopectl ]; then + echo -n " Instance ${instance} -> " + ${instance}/bin/zopectl $1 + fi + done +fi |