blob: a74aaa3cb2765d47e6d2c160d040dd77c3419f5b (
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
127
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: icinga2
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable icinga2:
# icinga2_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable icinga2.
# icinga2_flags (str): Set to "" by default.
# icinga2_configfile (str): Set to "%%PREFIX%%/etc/icinga2/icinga2.cfg" by default.
# icinga2_mkvar (bool): Set to "NO" by default.
# Set it to "YES" to have the rc script create all
# directories in /var (needed when /var is on a ramdisk)
#
. /etc/rc.subr
# XXX temporary workaround for a bug in Icinga 2. See
# https://dev.icinga.org/issues/13567
trap "" SIGPIPE
# Add /usr/local/bin to path, so that the notification scripts
# can work (#!/usr/bin/env bash)
export PATH=$PATH:%%LOCALBASE%%/bin
name="icinga2"
rcvar=icinga2_enable
load_rc_config "${name}"
: ${icinga2_enable:="NO"}
: ${icinga2_configfile="%%PREFIX%%/etc/${name}/${name}.conf"}
: ${icinga2_mkvar:="NO"}
command="%%PREFIX%%/sbin/${name}"
procname="/usr/local/lib/icinga2/sbin/icinga2"
extra_commands="reload checkconfig configtest"
icinga2_user="%%ICINGA2USER%%"
icinga2_group="%%ICINGA2GROUP%%"
icinga2_cachedir="/var/cache/${name}"
icinga2_libdir="/var/lib/${name}"
icinga2_logdir="%%ICINGA2LOGDIR%%"
icinga2_rundir="/var/run/${name}"
icinga2_spooldir="/var/spool/${name}"
pidfile="${icinga2_rundir}/${name}.pid"
icinga2_logfile="${icinga2_logdir}/${name}.log"
icinga2_errorlogfile="${icinga2_logdir}/error.log"
start_cmd="start_cmd"
start_precmd="start_precmd"
restart_precmd="icinga2_checkconfig"
reload_precmd="reload_precmd"
checkconfig_cmd="icinga2_checkconfig verbose"
configtest_cmd="${checkconfig_cmd}"
sig_reload=HUP
required_files="${icinga2_configfile}"
command_args="daemon -d -e ${icinga2_errorlogfile} -c ${icinga2_configfile}"
icinga2_checkconfig() {
echo -n "Performing sanity check of icinga2 configuration: "
if [ "$1" != "verbose" ]; then
quietredir="2>&1 >/dev/null"
fi
${command} daemon -c ${icinga2_configfile} -C
if [ $? -ne 0 ]; then
echo "FAILED"
return 1
else
echo "OK"
fi
}
reload_precmd() {
if ! icinga2_checkconfig; then
return 1
fi
}
start_precmd() {
if checkyesno "icinga2_mkvar"; then
# Create necessary directories / change ownership
#
# While this is also done through pkg-plist, /var might be on a ramdisk,
# so make sure all needed files and directories are created before starting
# Icinga.
for d in "${icinga2_logdir}" "${icinga2_logdir}/compat" \
"${icinga2_logdir}/compat/archives" "${icinga2_libdir}" \
"${icinga2_spooldir}" "${icinga2_spooldir}/tmp" \
"${icinga2_rundir}" "${icinga2_cachedir}"; do
if [ ! -d "${d}" ]; then
install -d -o ${icinga2_user} -g ${icinga2_group} "${d}"
else
chown ${icinga2_user}:${icinga2_group} "${d}"
fi
done
install -d -o ${icinga2_user} -g %%WWWGRP%% "${icinga2_rundir}/cmd"
chown -R ${icinga2_user}:${icinga2_user} "${icinga2_libdir}"
chown -R ${icinga2_user}:${icinga2_user} "${icinga2_spooldir}"
fi
if ! icinga2_checkconfig; then
return 1
fi
if [ ! -f "${icinga2_logfile}" ]; then
install -o "${icinga2_user}" -g "${icinga2_group}" -m 644 /dev/null "${icinga2_logfile}"
fi
}
start_cmd() {
${command} ${command_args}
}
run_rc_command "$1"
|