Recommit for updates in build 28

This commit is contained in:
Jenkins Server
2026-02-14 15:55:55 +01:00
parent 1a38e248ca
commit 1937b9fd5c

View File

@@ -325,6 +325,24 @@ inherited by all classes except defines.
—
<div class='inline'>
<p>Whether to configure the Nagios web interface to use HTTPS. Default is false. We recommend using a reverse proxy with SSL termination in front of the Nagios web interface, so this is disabled by default.</p>
</div>
</li>
<li>
<span class='name'>ng_event_broker_module</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The event broker module to be used in the Nagios configuration. Default is an empty string, which means no event broker module will be configured. You can specify a module like mod_gearman to enable the Gearman event broker module, for example.</p>
</div>
</li>
@@ -340,10 +358,6 @@ inherited by all classes except defines.
<pre class="lines">
30
31
32
33
34
35
36
@@ -453,27 +467,37 @@ inherited by all classes except defines.
140
141
142
143</pre>
143
144
145
146
147
148
149
150</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 30</span>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 34</span>
class confdroid_nagios::params (
# main
String $ng_nagios_server = &#39;nagios.example.net&#39;,
Array $ng_reqpackages_server = [&#39;nagios&#39;,&#39;nagios-devel&#39;],
Array $ng_reqpackages_client = [&#39;net-snmp-utils&#39;,&#39;nagios-plugins&#39;,&#39;nagios-plugins-all&#39;,&#39;nagios-plugins-nrpe&#39;,&#39;nagios-common&#39;],
String $ng_pkg_ensure = &#39;present&#39;,
Boolean $ng_include_nrpe = true,
String $ng_nagios_server = &#39;nagios.example.net&#39;,
Array $ng_reqpackages_server = [&#39;nagios&#39;,&#39;nagios-devel&#39;],
Array $ng_reqpackages_client = [&#39;net-snmp-utils&#39;,&#39;nagios-plugins&#39;,&#39;nagios-plugins-all&#39;,&#39;nagios-plugins-nrpe&#39;,&#39;nagios-common&#39;],
String $ng_pkg_ensure = &#39;present&#39;,
Boolean $ng_include_nrpe = true,
# user
String $ng_user = &#39;nagios&#39;,
String $ng_u_comment = &#39;Nagios User&#39;,
String $ng_u_groups = &#39;nagios&#39;,
String $ng_u_shell = &#39;/sbin/nologin&#39;,
String $ng_u_home = &#39;/home/nagios&#39;,
Integer $ng_u_uid = 1004,
String $ng_user = &#39;nagios&#39;,
String $ng_u_comment = &#39;Nagios User&#39;,
String $ng_u_groups = &#39;nagios&#39;,
String $ng_u_shell = &#39;/sbin/nologin&#39;,
String $ng_u_home = &#39;/home/nagios&#39;,
Integer $ng_u_uid = 1004,
# nagios_cfg settings
String $ng_event_broker_module = &#39;&#39;,
# httpd
Boolean $ng_use_https = false,