Compare commits

..

4 Commits

Author SHA1 Message Date
Jenkins Server
3ac525b0a0 Recommit for updates in build 60 2026-09-07 14:31:38 +02:00
Jenkins Server
2147ac6266 Merge remote-tracking branch 'origin/master' into jenkins-build-60 2026-09-07 14:30:31 +02:00
eb1669f010 OP#672 add check_alloy command 2026-09-07 14:30:08 +02:00
Jenkins Server
b20ea1f3e3 Merge remote-tracking branch 'origin/master' into jenkins-build-59 2026-06-13 14:06:46 +02:00
2 changed files with 16 additions and 1 deletions

View File

@@ -181,7 +181,12 @@
77 77
78 78
79 79
80</pre> 80
81
82
83
84
85</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>
@@ -253,6 +258,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_alloy&#39;:
ne_check_name =&gt; &#39;check_alloy&#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

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