Compare commits

..

4 Commits

Author SHA1 Message Date
Jenkins Server
79c0efb89a Recommit for updates in build 65 2026-09-08 13:09:05 +02:00
Jenkins Server
5a2f349f3b Merge remote-tracking branch 'origin/master' into jenkins-build-65 2026-09-08 13:07:32 +02:00
8c0207a92c OP#672 add check_puppet command 2026-09-08 13:07:14 +02:00
Jenkins Server
abdefc0c6b Recommit for updates in build 64 2026-09-07 16:34:29 +02:00
2 changed files with 16 additions and 1 deletions

View File

@@ -196,7 +196,12 @@
92 92
93 93
94 94
95</pre> 95
96
97
98
99
100</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>
@@ -283,6 +288,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_puppet_server&#39;:
ne_check_name =&gt; &#39;check_puppet_server&#39;,
ne_check_cmd =&gt; &#39;check_procs&#39;,
ne_cmd_argstring =&gt; &#39;-c $ARG1$ -a $ARG2$&#39;,
}
} }
}</pre> }</pre>
</td> </td>

View File

@@ -91,5 +91,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_puppet_server':
ne_check_name => 'check_puppet_server',
ne_check_cmd => 'check_procs',
ne_cmd_argstring => '-c $ARG1$ -a $ARG2$',
}
} }
} }