blob: ef03c6b03dfe056d691519fd10094445f91ef185 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#!@RCD_SCRIPTS_SHELL@
#
# Startup script for Zope @ZOPE_VERSION@ server.
#
# $NetBSD: zope.sh,v 1.2 2008/07/25 08:23:23 taca Exp $
#
# PROVIDE: @ZOPE_PKG@
# REQUIRE: DAEMON
# You will need to set some variables in /etc/rc.conf to start Zope
#
# @ZOPE_PKG@@RCVAR_SUFFIX@ : bool
# Enable Zope ("YES") or not ("NO", the default).
#
# @ZOPE_PKG@_encoding : list
# Default character encoding for @ZOPE_PKG@ (default is "utf-8").
# You can specify single character encoding for all Zope instances
# or specify a list for each Zope instance. "none" means specify
# nothing.
#
# @ZOPE_PKG@_instances : list
# List of dirs with Zope's instances ("" by default).
#
if [ -f /etc/rc.subr ]
then
. /etc/rc.subr
fi
name="@ZOPE_PKG@"
rcvar="$name@RCVAR_SUFFIX@"
zope_name="Zope @ZOPE_FULL_VERSION@"
start_cmd="@ZOPE_PKG@_start"
stop_cmd="@ZOPE_PKG@_stop"
restart_cmd="@ZOPE_PKG@_restart"
@ZOPE_PKG@ctl () {
cmd=$1
for encoding in ${@ZOPE_PKG@_encoding}; do
if [ "$encoding" ]; then
ZOPE@ZOPE_VERSION@_DEFAULT_ENCODING="$encoding"
export ZOPE@ZOPE_VERSION@_DEFAULT_ENCODING
else
unset ZOPE@ZOPE_VERSION@_DEFAULT_ENCODING
fi
for instance in ${@ZOPE_PKG@_instances}; do
if [ -d ${instance} ]; then
echo -n " Zope instance ${instance} -> "
${instance}/bin/zopectl ${cmd}
fi
done
done
}
@ZOPE_PKG@_start () {
echo "Starting ${zope_name}:"
@ZOPE_PKG@ctl "start"
}
@ZOPE_PKG@_stop () {
echo "Stopping ${zope_name}:"
@ZOPE_PKG@ctl "stop"
}
@ZOPE_PKG@_restart () {
echo "Restarting ${zope_name}:"
@ZOPE_PKG@ctl "restart"
}
load_rc_config $name
: ${@ZOPE_PKG@@RCVAR_SUFFIX@="NO"}
: ${@ZOPE_PKG@_encoding="utf-8"}
: ${@ZOPE_PKG@_instances=""}
cmd="$1"
[ $# -gt 0 ] && shift
[ -n "$*" ] && @ZOPE_PKG@_instances="$*"
run_rc_command "${cmd}"
|