Recommit for updates in build 6

This commit is contained in:
Jenkins Server
2026-02-10 16:33:06 +01:00
parent 754fcc9a79
commit 980a74a24b
3 changed files with 7 additions and 8 deletions

View File

@@ -135,6 +135,8 @@
<ul><li> <ul><li>
<p>installs and configures yum repos</p> <p>installs and configures yum repos</p>
</li><li> </li><li>
<p>install commonly required packages, which can be overridden per host, hostgroup etc.</p>
</li><li>
<p>Automatic installation and enabling of EPEL via <code>$rs_enable_epel</code>. since this parameter is directly also used in the yumrepo configuration, it needs to be set to <code>1</code>, <strong>not</strong> <code>true</code>.</p> <p>Automatic installation and enabling of EPEL via <code>$rs_enable_epel</code>. since this parameter is directly also used in the yumrepo configuration, it needs to be set to <code>1</code>, <strong>not</strong> <code>true</code>.</p>
</li><li> </li><li>
<p>Parameter-based control (enable/disable specific repos)</p> <p>Parameter-based control (enable/disable specific repos)</p>

View File

@@ -135,6 +135,8 @@
<ul><li> <ul><li>
<p>installs and configures yum repos</p> <p>installs and configures yum repos</p>
</li><li> </li><li>
<p>install commonly required packages, which can be overridden per host, hostgroup etc.</p>
</li><li>
<p>Automatic installation and enabling of EPEL via <code>$rs_enable_epel</code>. since this parameter is directly also used in the yumrepo configuration, it needs to be set to <code>1</code>, <strong>not</strong> <code>true</code>.</p> <p>Automatic installation and enabling of EPEL via <code>$rs_enable_epel</code>. since this parameter is directly also used in the yumrepo configuration, it needs to be set to <code>1</code>, <strong>not</strong> <code>true</code>.</p>
</li><li> </li><li>
<p>Parameter-based control (enable/disable specific repos)</p> <p>Parameter-based control (enable/disable specific repos)</p>

View File

@@ -110,8 +110,7 @@
<span class='type'>(<tt>Array</tt>)</span> <span class='type'>(<tt>Array</tt>)</span>
<em class="default">(defaults to: <tt>$facts[&#39;os&#39;][&#39;name&#39;] ? { <em class="default">(defaults to: <tt>[&#39;yum&#39;, &#39;yum-utils&#39;]</tt>)</em>
&#39;Rocky&#39; =&gt; [&#39;yum&#39;, &#39;yum-utils&#39;]</tt>)</em>
&mdash; &mdash;
@@ -178,18 +177,14 @@
16 16
17 17
18 18
19 19</pre>
20
21</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 9</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 9</span>
class confdroid_resources::params ( class confdroid_resources::params (
Array $reqpackages = $facts[&#39;os&#39;][&#39;name&#39;] ? { Array $reqpackages = [&#39;yum&#39;, &#39;yum-utils&#39;],
&#39;Rocky&#39; =&gt; [&#39;yum&#39;, &#39;yum-utils&#39;],
},
String $pkg_ensure = &#39;present&#39;, String $pkg_ensure = &#39;present&#39;,
String $rs_enable_epel = &#39;1&#39;, String $rs_enable_epel = &#39;1&#39;,