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

@@ -2,5 +2,5 @@ projectKey=automatic_cd
serverUrl=https://sonarqube.confdroid.com
serverVersion=25.5.0.107428
dashboardUrl=https://sonarqube.confdroid.com/dashboard?id=automatic_cd
ceTaskId=2202c158-e702-45b7-b0c1-51241db830fc
ceTaskUrl=https://sonarqube.confdroid.com/api/ce/task?id=2202c158-e702-45b7-b0c1-51241db830fc
ceTaskId=471c3d85-f1d0-4f13-aa1a-b2b75fe1b907
ceTaskUrl=https://sonarqube.confdroid.com/api/ce/task?id=471c3d85-f1d0-4f13-aa1a-b2b75fe1b907

View File

@@ -1,7 +1,7 @@
manifests/init.pp 478e2a087e702bfd4cf48c5d8984325040307f15
manifests/params.pp 105220e2dbaaee44adf12e3a83d88aab57e0cc83
manifests/params.pp 05f893a36ab88db4478837df3f80727ba210f59f
manifests/main/dirs.pp af59ff6da810f0490aff3b9c21a8f3c69ae5b20b
manifests/main/files.pp 59e63f3cb976e784c9c32b8ea522a70bb4c74d17
manifests/main/files.pp edab2ec72add8ddf6284fbb375b648cf7f65f077
manifests/main/config.pp 27413292f36c6dd5df14e4c64455d623a0b164fa
manifests/main/install.pp 5a03608b5080efd898c40968c2c8c5dfc9762fb2
manifests/main/service.pp bc471c6cf6baeba3123fb3c6f037691afd4c87c3

Binary file not shown.

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>