Recommit for updates in build 7

This commit is contained in:
Jenkins Server
2025-06-03 16:17:48 +02:00
parent 60a148c323
commit 1b91e8c190
5 changed files with 42 additions and 6 deletions

View File

@@ -105,7 +105,21 @@
7
8
9
10</pre>
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/main/files.pp', line 6</span>
@@ -114,6 +128,20 @@ class automatic_cd::main::files (
) inherits automatic_cd::params {
require automatic_cd::main::dirs
file { $ac_main_config:
ensure =&gt; file,
path =&gt; $ac_main_config,
owner =&gt; &#39;root&#39;,
group =&gt; &#39;root&#39;,
mode =&gt; &#39;0644&#39;,
selrange =&gt; s0,
selrole =&gt; object_r,
seltype =&gt; etc_t,
seluser =&gt; system_u,
content =&gt; template($ac_main_config_erb),
notify =&gt; Service[$ac_service],
}
}</pre>
</td>
</tr>

View File

@@ -170,7 +170,11 @@
22
23
24
25</pre>
25
26
27
28
29</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 8</span>
@@ -190,6 +194,10 @@ class automatic_cd::params (
# Service
$ac_service = &#39;dnf-automatic.timer&#39;
# Files
$ac_main_config = &#39;/etc/dnf/automatic.conf&#39;
$ac_main_config_erb = &#39;/automatic_cd/automatic.conf.erb&#39;
# includes must be last
include automatic_cd::main::config
}</pre>