Recommit for updates in build 4

This commit is contained in:
Jenkins Server
2025-09-16 11:51:36 +02:00
parent 349b830fcd
commit 2d7150dcea
2 changed files with 6 additions and 6 deletions

View File

@@ -146,10 +146,10 @@
<span class='name'>rs_enable_epel</span>
<span class='type'>(<tt>Boolean</tt>)</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>false</tt>)</em>
<em class="default">(defaults to: <tt>&#39;1&#39;</tt>)</em>
&mdash;
@@ -192,11 +192,11 @@ class resources_cd::params (
Array $reqpackages = $facts[&#39;os&#39;][&#39;name&#39;] ? {
&#39;Rocky&#39; =&gt; [&#39;yum&#39;, &#39;yum-utils&#39;],
},
String $pkg_ensure = &#39;present&#39;,
Boolean $rs_enable_epel = false,
String $pkg_ensure = &#39;present&#39;,
String $rs_enable_epel = &#39;1&#39;,
) {
$epel_from_url = &#39;https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm&#39;
$epel_from_url = &#39;https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm&#39;
# includes must be last
include resources_cd::main::config
}</pre>