Compare commits

..

5 Commits

Author SHA1 Message Date
Jenkins Server
6902246796 Recommit for updates in build 19 2026-08-02 13:58:19 +02:00
Jenkins Server
49f19fb539 Merge remote-tracking branch 'origin/master' into jenkins-build-19 2026-08-02 13:57:11 +02:00
4214c137a4 OP#653 fix syntax 2026-08-02 13:56:53 +02:00
482ed69aa1 OP#653 add client main directories 2026-08-02 13:54:52 +02:00
Jenkins Server
cd8defcf9c Recommit for updates in build 17 2026-08-02 13:52:54 +02:00
2 changed files with 14 additions and 5 deletions

View File

@@ -130,7 +130,10 @@
32
33
34
35</pre>
35
36
37
38</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/main/dirs.pp', line 6</span>
@@ -152,9 +155,9 @@ class confdroid_puppet::main::dirs (
seluser =&gt; system_u,
}
file { $pt_puppet_dir:
file { $pt_puppetdir:
ensure =&gt; directory,
path =&gt; $pt_puppet_dir,
path =&gt; $pt_puppetdir,
owner =&gt; &#39;root&#39;,
group =&gt; &#39;root&#39;,
mode =&gt; &#39;0755&#39;,
@@ -164,6 +167,9 @@ class confdroid_puppet::main::dirs (
seluser =&gt; system_u,
}
if $fqdn == $pt_pm_fqdn {
# server dirs here
}
}</pre>
</td>
</tr>

View File

@@ -20,9 +20,9 @@ class confdroid_puppet::main::dirs (
seluser => system_u,
}
file { $pt_puppet_dir:
file { $pt_puppetdir:
ensure => directory,
path => $pt_puppet_dir,
path => $pt_puppetdir,
owner => 'root',
group => 'root',
mode => '0755',
@@ -32,4 +32,7 @@ class confdroid_puppet::main::dirs (
seluser => system_u,
}
if $fqdn == $pt_pm_fqdn {
# server dirs here
}
}