Compare commits

..

4 Commits

Author SHA1 Message Date
Jenkins Server
34b8d12776 Recommit for updates in build 63 2026-09-07 15:40:53 +02:00
Jenkins Server
83cf4b89a8 Merge remote-tracking branch 'origin/master' into jenkins-build-63 2026-09-07 15:39:51 +02:00
5ceed98867 OP#672 add check_haproxy command 2026-09-07 15:39:31 +02:00
Jenkins Server
19c190350e Recommit for updates in build 62 2026-09-07 15:33:13 +02:00
2 changed files with 16 additions and 1 deletions

View File

@@ -186,7 +186,12 @@
82 82
83 83
84 84
85</pre> 85
86
87
88
89
90</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/commands/definition_rules.pp', line 12</span> <pre class="code"><span class="info file"># File 'manifests/commands/definition_rules.pp', line 12</span>
@@ -263,6 +268,11 @@ class confdroid_nrpe::commands::definition_rules (
ne_check_cmd =&gt; &#39;check_procs&#39;, ne_check_cmd =&gt; &#39;check_procs&#39;,
ne_cmd_argstring =&gt; &#39;-c $ARG1$ -C $ARG2$&#39;, ne_cmd_argstring =&gt; &#39;-c $ARG1$ -C $ARG2$&#39;,
} }
confdroid_nrpe::commands::definitions { &#39;check_haproxy&#39;:
ne_check_name =&gt; &#39;check_haproxy&#39;,
ne_check_cmd =&gt; &#39;check_procs&#39;,
ne_cmd_argstring =&gt; &#39;-c $ARG1$ -C $ARG2$&#39;,
}
} }
}</pre> }</pre>
</td> </td>

View File

@@ -81,5 +81,10 @@ class confdroid_nrpe::commands::definition_rules (
ne_check_cmd => 'check_procs', ne_check_cmd => 'check_procs',
ne_cmd_argstring => '-c $ARG1$ -C $ARG2$', ne_cmd_argstring => '-c $ARG1$ -C $ARG2$',
} }
confdroid_nrpe::commands::definitions { 'check_haproxy':
ne_check_name => 'check_haproxy',
ne_check_cmd => 'check_procs',
ne_cmd_argstring => '-c $ARG1$ -C $ARG2$',
}
} }
} }