blob: 2d0170aaa9e2583fe107debcb98a83524779a367 (
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
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
|
#!/bin/sh
# PROVIDE: apcctrl
# REQUIRE: SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf[.local] to enable apcctrl
#
# apcctrl_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable apcctrl.
# apcctrl_flags (str): Custom additional arguments to be passed
# to apcctrl (default --kill-on-powerfail).
# apcctrl_configs (str): A list of configs to run multiple instances.
#
. /etc/rc.subr
name=apcctrl
rcvar=apcctrl_enable
load_rc_config $name
: ${apcctrl_enable="NO"}
: ${apcctrl_flags="--kill-on-powerfail"}
pidfile=/var/run/${name}.pid
required_files="${apcctrl_configs:-%%ETCDIR%%/apcctrl.conf}"
command=%%PREFIX%%/sbin/${name}
restart_cmd=${name}_restart_cmd
apcctrl_precmd()
{
config=$1
dn="`/usr/bin/dirname ${pidfile}`"
if [ -n "${config}" ]; then
# Specific config
base="`/usr/bin/basename ${config} .conf`"
pidfile="${dn}/${base}.pid"
command_args="-f ${config} -P ${pidfile}"
else
# Default config
command_args=""
fi
}
apcctrl_restart_cmd()
{
if [ -n "${apcctrl_configs}" ]; then
# One or more named configs
for config in ${apcctrl_configs}; do
apcctrl_precmd ${config}
run_rc_command stop
done
for config in ${apcctrl_configs}; do
apcctrl_precmd ${config}
run_rc_command start
done
else
# Default config
apcctrl_precmd
run_rc_command stop
run_rc_command start
fi
}
if [ "$1" = restart ]; then
apcctrl_precmd
run_rc_command $1
elif [ -n "${apcctrl_configs}" ]; then
# One or more named configs
for config in ${apcctrl_configs}; do
apcctrl_precmd ${config}
run_rc_command $1
done
else
# Default config
apcctrl_precmd
run_rc_command $1
fi
|