Recommit for updates in build 150

This commit is contained in:
Jenkins Server
2026-03-07 12:29:52 +01:00
parent 0b44edd0e9
commit 5b75dc7329

View File

@@ -1513,6 +1513,222 @@ inherited by all classes except defines.
— —
<div class='inline'> <div class='inline'>
<p>Whether to enable predictive service dependency checks in Nagios. Default is 1.</p> <p>Whether to enable predictive service dependency checks in Nagios. Default is 1.</p>
</div>
</li>
<li>
<span class='name'>ng_soft_state_dependencies</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;0&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>Whether to enable soft state dependencies in Nagios. Default is 0.</p>
</div>
</li>
<li>
<span class='name'>ng_time_change_threshold</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;900&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The time change threshold for Nagios. Default is 900.</p>
</div>
</li>
<li>
<span class='name'>ng_auto_reschedule_checks</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;1&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>Whether to automatically reschedule checks in Nagios. Default is 1.</p>
</div>
</li>
<li>
<span class='name'>ng_auto_reschedule_intval</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;30&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The interval for automatically rescheduling checks in Nagios. Default is 30.</p>
</div>
</li>
<li>
<span class='name'>ng_auto_reschedule_window</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;180&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The window for automatically rescheduling checks in Nagios. Default is 180.</p>
</div>
</li>
<li>
<span class='name'>ng_service_check_timeout</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;60&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The service check timeout for Nagios. Default is 60.</p>
</div>
</li>
<li>
<span class='name'>ng_host_check_timeout</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;30&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The host check timeout for Nagios. Default is 30.</p>
</div>
</li>
<li>
<span class='name'>ng_event_handler_timeout</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;30&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The event handler timeout for Nagios. Default is 30.</p>
</div>
</li>
<li>
<span class='name'>ng_notification_timeout</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;30&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The notification timeout for Nagios. Default is 30.</p>
</div>
</li>
<li>
<span class='name'>ng_ocsp_timeout</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;5&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The OCSP timeout for Nagios. Default is 5.</p>
</div>
</li>
<li>
<span class='name'>ng_ochp_timeout</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;5&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The OCHP timeout for Nagios. Default is 5.</p>
</div>
</li>
<li>
<span class='name'>ng_perfdata_timeout</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;5&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The performance data timeout for Nagios. Default is 5.</p>
</div> </div>
</li> </li>
@@ -1528,28 +1744,6 @@ inherited by all classes except defines.
<pre class="lines"> <pre class="lines">
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187 187
188 188
189 189
@@ -1733,10 +1927,44 @@ inherited by all classes except defines.
367 367
368 368
369 369
370</pre> 370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 165</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 187</span>
class confdroid_nagios::params ( class confdroid_nagios::params (
@@ -1800,6 +2028,18 @@ class confdroid_nagios::params (
String $ng_cached_s_check_horizon = &#39;15&#39;, String $ng_cached_s_check_horizon = &#39;15&#39;,
String $ng_pred_host_dep_checks = &#39;1&#39;, String $ng_pred_host_dep_checks = &#39;1&#39;,
String $ng_pred_svc_dep_checks = &#39;1&#39;, String $ng_pred_svc_dep_checks = &#39;1&#39;,
String $ng_soft_state_dependencies = &#39;0&#39;,
String $ng_time_change_threshold = &#39;900&#39;,
String $ng_auto_reschedule_checks = &#39;1&#39;,
String $ng_auto_reschedule_intval = &#39;30&#39;,
String $ng_auto_reschedule_window = &#39;180&#39;,
String $ng_service_check_timeout = &#39;60&#39;,
String $ng_host_check_timeout = &#39;30&#39;,
String $ng_event_handler_timeout = &#39;30&#39;,
String $ng_notification_timeout = &#39;30&#39;,
String $ng_ocsp_timeout = &#39;5&#39;,
String $ng_ochp_timeout = &#39;5&#39;,
String $ng_perfdata_timeout = &#39;5&#39;,
# cgi.cfg # cgi.cfg
String $ng_context_help = &#39;1&#39;, String $ng_context_help = &#39;1&#39;,