Compare commits

..

4 Commits

Author SHA1 Message Date
Jenkins Server
74f77d10bb Recommit for updates in build 66 2026-09-08 13:37:43 +02:00
Jenkins Server
0f3b5a65a9 Merge remote-tracking branch 'origin/master' into jenkins-build-66 2026-09-08 13:36:32 +02:00
40987bc9d4 OP#672 add check_puppetdb command 2026-09-08 13:36:13 +02:00
Jenkins Server
9cdab61f8e Recommit for updates in build 65 2026-09-08 13:09:01 +02:00
2 changed files with 16 additions and 1 deletions

View File

@@ -201,7 +201,12 @@
97 97
98 98
99 99
100</pre> 100
101
102
103
104
105</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>
@@ -293,6 +298,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$ -a $ARG2$&#39;, ne_cmd_argstring =&gt; &#39;-c $ARG1$ -a $ARG2$&#39;,
} }
confdroid_nrpe::commands::definitions { &#39;check_puppetdb&#39;:
ne_check_name =&gt; &#39;check_puppetdb&#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

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