Recommit for updates in build 12

This commit is contained in:
Jenkins Server
2026-04-30 11:52:27 +02:00
parent 02e96df2c4
commit 171893d8e3

View File

@@ -300,6 +300,24 @@
—
<div class='inline'>
<p>which host to use to send the email</p>
</div>
</li>
<li>
<span class='name'>ac_excludepkgs</span>
<span class='type'>(<tt>Variant[String, Array[String]]</tt>)</span>
<em class="default">(defaults to: <tt>[]</tt>)</em>
&mdash;
<div class='inline'>
<p>packages to exclude from updates</p>
</div>
</li>
@@ -315,7 +333,6 @@
<pre class="lines">
18
19
20
21
@@ -347,15 +364,23 @@
47
48
49
50</pre>
50
51
52
53
54
55
56
57</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 18</span>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 19</span>
class confdroid_automatic::params (
String $ac_reqpackages = &#39;dnf-automatic&#39;,
String $ac_pkg_ensure = &#39;latest&#39;,
String $ac_reqpackages = &#39;dnf-automatic&#39;,
String $ac_pkg_ensure = &#39;latest&#39;,
Variant[String, Array[String]] $ac_excludepkgs = [],
# updates
String $ac_upgrade_type = &#39;default&#39;,
@@ -382,6 +407,11 @@ class confdroid_automatic::params (
$ac_main_config = &#39;/etc/dnf/automatic.conf&#39;
$ac_main_config_erb = &#39;confdroid_automatic/automatic.conf.erb&#39;
$ac_excludepkgs_normalized = $ac_excludepkgs ? {
Array =&gt; join($ac_excludepkgs, &#39;,&#39;),
default =&gt; $ac_excludepkgs,
}
# includes must be last
include confdroid_automatic::main::config
}</pre>