blob: cbde5558a6924597f44bc59e6884706b08865ae1 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
#!/bin/sh
#
# PROVIDE: cbsdd
# REQUIRE: LOGIN FILESYSTEMS sshd
# KEYWORD: shutdown
#
# cbsdd_enable="YES"
#
. /etc/rc.subr
name=cbsdd
rcvar=cbsdd_enable
load_rc_config $name
: ${cbsdd_enable="NO"}
export workdir="${cbsd_workdir}"
export NO_CBSD_HISTORY=yes
# disable interactive question
export NOINTER=1
# always answer 'no'
export ALWAYS_NO=1
globalconf=${cbsd_globalconf:-"%%PREFIX%%/cbsd/cbsd.conf"}
if [ ! -f ${globalconf} ]; then
echo "cbsd: no such ${globalconf}";
exit 1
fi
if [ ! -f ${mdtools} ]; then
echo "cbsd: no such ${mdtools}";
exit 1
fi
if [ ! -f ${subr} ]; then
echo "cbsd: no such ${subr}";
exit 1
fi
if [ ! -f ${localcbsdconf} ]; then
echo "cbsd: no such ${localcbsdconf}";
exit 1
fi
. ${globalconf}
. ${mdtools}
. ${subrdir}/nc.subr
. ${localcbsdconf}
start_precmd=${name}_prestart
stop_precmd=${name}_prestop
stop_cmd=${name}_stop
status_cmd="${name}_status"
restart_cmd=${name}_restart
extra_commands="restart"
command="${toolsdir}/cbsdd"
pidfile="${cbsd_workdir}/var/run/$name.pid"
command_args="&"
cbsdd_prestart() {
%%PREFIX%%/bin/cbsd task mode=flushall > /dev/null 2>&1
. ${subrdir}/initenv.subr
. ${inventory}
%%PREFIX%%/bin/cbsd sysinv mode=update
%%PREFIX%%/bin/cbsd netinv
update_netinfo
${miscdir}/sqlcli ${dbdir}/local.sqlite "UPDATE jails SET status='0' WHERE status='3'"
[ -n "${nat_enable}" ] && %%PREFIX%%/bin/cbsd naton
/usr/sbin/daemon -f ${rcddir}/jails-astart start
}
cbsdd_prestop()
{
${rcddir}/jails-astart stop
[ -n "${nat_enable}" ] && %%PREFIX%%/bin/cbsd natoff
}
cbsdd_stop()
{
if [ -f "${pidfile}" ]; then
pids=$( pgrep -F ${pidfile} 2>&1 )
_err=$?
if [ ${_err} -eq 0 ]; then
kill -9 ${pids} && /bin/rm -f ${pidfile}
else
echo "pgrep: ${pids}"
return ${_err}
fi
fi
}
cbsdd_restart()
{
if [ -f "${pidfile}" ]; then
pkill -9 -F ${pidfile} > /dev/null 2>&1
/bin/rm -f ${pidfile}
fi
run_rc_command "start"
exit 0
}
cbsdd_status()
{
local _err
if [ -f "${pidfile}" ]; then
pids=$( pgrep -F ${pidfile} 2>&1 )
_err=$?
if [ ${_err} -eq 0 ]; then
echo "${name} is running as pid ${pids}."
else
echo "pgrep: ${pids}"
return ${_err}
fi
else
echo "${name} is not running."
return 1
fi
}
run_rc_command "$1"
|