summaryrefslogtreecommitdiffstats
path: root/www/zope28/files/zope28.sh.in
blob: e51d5fa39140eb2df59922f64a6ad28e100bf6ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/sh
#
# Startup script for Zope server.
#
# $FreeBSD$
#

# PROVIDE: zope28
# REQUIRE: DAEMON

# Define these zope28_* variables in one of these files:
#       /etc/rc.conf
#       /etc/rc.conf.local
#       /etc/rc.conf.d/zope28
#
# zope28_enable : bool
#   Enable Zope ("YES") or not ("NO", the default).
#
# zope28_instances : list
#   List of dirs with Zope's instances ("" by default).
#

. %%RC_SUBR%%

name="zope28"
rcvar=`set_rcvar`

zope28ctl () {
    for instance in $zope28_instances; do
	if [ -d ${instance} ]; then
	    echo -n "  Zope instance ${instance} -> "
	    ${instance}/bin/zopectl "$1"
	fi
    done
}

zope28_start () {
    echo "Starting Zope 2.8:"
    zope28ctl "start"
}

zope28_stop () {
    echo "Stopping Zope 2.8:"
    zope28ctl "stop"
}

zope28_restart () {
    echo "Restarting Zope 2.8:"
    zope28ctl "restart"
}

  start_cmd="zope28_start"
   stop_cmd="zope28_stop"
restart_cmd="zope28_restart"

load_rc_config $name

: ${zope28_enable="NO"}
: ${zope28_instances=""}

cmd="$1"
[ $# -gt 0 ] && shift
[ -n  "$*" ] && zope28_instances="$*"

run_rc_command "${cmd}"
OpenPOWER on IntegriCloud