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>
<p>installs and configures yum repos</p>
</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>
</li><li>
<p>Parameter-based control (enable/disable specific repos)</p>

View File

@@ -135,6 +135,8 @@
<ul><li>
<p>installs and configures yum repos</p>
</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>
</li><li>
<p>Parameter-based control (enable/disable specific repos)</p>

View File

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