Compare commits

..

4 Commits

Author SHA1 Message Date
Jenkins Server
e414192ac6 Recommit for updates in build 70 2026-09-24 16:39:59 +02:00
Jenkins Server
625a4e007b Merge remote-tracking branch 'origin/master' into jenkins-build-70 2026-09-24 16:38:55 +02:00
4c90791059 OP#672 add check for sshd daemon 2026-09-24 16:38:34 +02:00
Jenkins Server
9c3945e258 Recommit for updates in build 69 2026-09-24 16:15:37 +02:00
2 changed files with 16 additions and 1 deletions

View File

@@ -206,7 +206,12 @@
102
103
104
105</pre>
105
106
107
108
109
110</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/commands/definition_rules.pp', line 12</span>
@@ -303,6 +308,11 @@ class confdroid_nrpe::commands::definition_rules (
ne_check_cmd =&gt; &#39;check_procs&#39;,
ne_cmd_argstring =&gt; &#39;-c $ARG1$ -a $ARG2$&#39;,
}
confdroid_nrpe::commands::definitions { &#39;check_sshd&#39;:
ne_check_name =&gt; &#39;check_sshd&#39;,
ne_check_cmd =&gt; &#39;check_procs&#39;,
ne_cmd_argstring =&gt; &#39;-c $ARG1$ -C $ARG2$&#39;,
}
}
}</pre>
</td>

View File

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