blob: 56f3ab038e84ab6f2c60484746be97de579814f2 (
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
|
#!/bin/sh
# Start or stop zope
# $FreeBSD: /tmp/pcvs/ports/www/zope/files/Attic/zope.sh,v 1.7 2006-02-20 20:47:50 dougb Exp $
# PROVIDE: zope
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown
#
prefix=%%PREFIX%%
# Define these zope_* variables in one of these files:
# /etc/rc.conf
# /etc/rc.conf.local
# /etc/rc.conf.d/zope
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
#
zope_enable=${zope_enable:-"NO"} # Enable zope
zope_instances=${zope_instances:-""} # List of instancehome dirs
. %%RC_SUBR%%
name="zope"
rcvar=`set_rcvar`
load_rc_config $name
extra_commands="status"
if checkyesno zope_enable; then
for instance in $zope_instances; do
required_files="${instance}/etc/${name}.conf ${instance}/bin/zopectl"
zope_command="${instance}/bin/zopectl"
start_cmd="${zope_command} start"
stop_cmd="${zope_command} stop"
restart_cmd="${zope_command} restart"
status_cmd="${zope_command} status"
echo -n "Zope instance ${instance} -> "
run_rc_command "$1"
done
fi
|