diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-11-16 00:02:25 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-11-16 00:02:25 +0000 |
commit | bf01faeea1f0011fc692da98ed6e8541fe42d6b5 (patch) | |
tree | 9505b7a8dbeea040d613c8cda0914bda67e16412 /www/zope28/files/zeo.sh | |
parent | . Antlr now seems to require Java 1.4 or better (certainly the build fails (diff) |
- Update to 2.7.3
PR: ports/73969
Submitted by: Gerhard Schmidt <estartu@augusta.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=121728
Diffstat (limited to 'www/zope28/files/zeo.sh')
-rw-r--r-- | www/zope28/files/zeo.sh | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/www/zope28/files/zeo.sh b/www/zope28/files/zeo.sh new file mode 100644 index 000000000000..099f579fd9a2 --- /dev/null +++ b/www/zope28/files/zeo.sh @@ -0,0 +1,53 @@ +#!/bin/sh + +# Start or stop zope +# $FreeBSD$ + +# PROVIDE: zeo +# REQUIRE: DAEMON +# BEFORE: zope +# 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/zeo +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +zeo_enable=${zeo_enable:-"NO"} # Enable gkrellmd +zeo_instances=${zeo_instances:-""} # List of instancehome dirs + +. %%RC_SUBR%% + +name="zeo" +rcvar=`set_rcvar` +load_rc_config $name + +if checkyesno zeo_enable; then + + case "$1" in + start) + echo "Starting Zeo" + ;; + stop) + echo "Stopping Zeo" + ;; + restart) + echo "Restarting Zeo" + ;; + *) + echo "Unknown action \"$1\"" + ;; + esac + + for instance in $zeo_instances + do + if [ -r ${instance}/etc/${name}.conf -a -x ${instance}/bin/zeoctl ]; then + echo -n " Instance ${instance} -> " + ${instance}/bin/zeoctl $1 + fi + done +fi |