aboutsummaryrefslogtreecommitdiffstats
path: root/www/zope29/files/zeo.sh
blob: f067c06de8db50766611bc3bbe169ebf8c3eba99 (plain) (blame)
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
#!/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 zeo server
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