recommit for updates in build 12

This commit is contained in:
Jenkins ConfDroid
2019-04-23 21:09:49 +02:00
parent f5db129dcd
commit eedfe76954
4 changed files with 32 additions and 3 deletions

View File

@@ -8,6 +8,16 @@ Changelog of Git Changelog.
<h2> No issue </h2> <h2> No issue </h2>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/522a99b01292b3c">522a99b01292b3c</a> Jenkins ConfDroid <i>2019-04-23 18:55:18</i>
<p>
<h3>recommit for updates in build 11</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/d5fc2898407d984">d5fc2898407d984</a> Arne Teuke <i>2019-04-23 18:54:36</i>
<p>
<h3>adds file content for nrpe.te</h3>
</p>
<a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/7ba65eb308d9609">7ba65eb308d9609</a> Jenkins ConfDroid <i>2019-04-23 18:47:44</i> <a href="https://gitlab.confdroid.com/12WW1160/git-changelog-lib/commit/7ba65eb308d9609">7ba65eb308d9609</a> Jenkins ConfDroid <i>2019-04-23 18:47:44</i>
<p> <p>
<h3>recommit for updates in build 10</h3> <h3>recommit for updates in build 10</h3>

View File

@@ -58,6 +58,7 @@
| |-- nrpe_cfg.erb | |-- nrpe_cfg.erb
| |-- nrpe_conf.erb | |-- nrpe_conf.erb
| |-- nrpe.te.erb | |-- nrpe.te.erb
| |-- semodule_nrpe.erb
| `-- sudo_rule.erb | `-- sudo_rule.erb
|-- tests |-- tests
| `-- UTF_Files | `-- UTF_Files
@@ -68,4 +69,4 @@
|-- LICENSE |-- LICENSE
`-- README.md `-- README.md
12 directories, 56 files 12 directories, 57 files

View File

@@ -129,7 +129,15 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/.</p>
30 30
31 31
32 32
33</pre> 33
34
35
36
37
38
39
40
41</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/main/exec.pp', line 23</span> <pre class="code"><span class="info file"># File 'manifests/main/exec.pp', line 23</span>
@@ -144,6 +152,14 @@ class cd_nrpe::main::exec (
user =&gt; &#39;root&#39;, user =&gt; &#39;root&#39;,
creates =&gt; $ne_nrpe_pp_file, creates =&gt; $ne_nrpe_pp_file,
} }
# import semodule
exec { &#39;import_semodule_nrpe&#39;:
command =&gt; template($ne_semodule_erb),
user =&gt; &#39;root&#39;,
require =&gt; Exec[&#39;create_nrpe_pp&#39;],
unless =&gt; &#39;/sbin/semodule -l | grep nrpe | grep -v nrpe_&#39;,
}
}</pre> }</pre>
</td> </td>
</tr> </tr>

View File

@@ -931,7 +931,8 @@ needed.</p>
186 186
187 187
188 188
189</pre> 189
190</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 101</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 101</span>
@@ -1019,6 +1020,7 @@ $ne_nrpe_te_erb = &#39;cd_nrpe/nrpe.te.erb&#39;
$ne_nrpe_mod_file = &quot;${ne_main_conf_d_dir}/nrpe.mod&quot; $ne_nrpe_mod_file = &quot;${ne_main_conf_d_dir}/nrpe.mod&quot;
$ne_checkmodule_nrpe_erb = &#39;cd_nrpe/checkmodule_nrpe.erb&#39; $ne_checkmodule_nrpe_erb = &#39;cd_nrpe/checkmodule_nrpe.erb&#39;
$ne_nrpe_pp_file = &quot;${ne_main_conf_d_dir}/nrpe.pp&quot; $ne_nrpe_pp_file = &quot;${ne_main_conf_d_dir}/nrpe.pp&quot;
$ne_semodule_erb = &#39;cd_nrpe/semodule_nrpe.erb&#39;
# includes must be last # includes must be last