Merge branch 'jenkins-build-96' into 'master'

Auto-merge for build 96

See merge request puppet/puppet_cd!92
This commit is contained in:
2025-10-30 13:52:00 +00:00
2 changed files with 26 additions and 5 deletions

View File

@@ -118,7 +118,14 @@
20
21
22
23</pre>
23
24
25
26
27
28
29
30</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/main/install.pp', line 6</span>
@@ -126,8 +133,15 @@
class puppet_cd::main::install (
) inherits puppet_cd::params {
package { $pt_agent_pkg:
ensure =&gt; $pt_pkg_ensure,
if $fqdn != $pt_pm_fqdn {
package { $pt_agent_pkg:
ensure =&gt; $pt_pkg_ensure,
}
if $pt_use_puppetdb == true {
package { $pt_puppetdb_pkg:
ensure =&gt; $pt_pkg_ensure,
}
}
}
if $fqdn == $pt_pm_fqdn {

View File

@@ -6,8 +6,15 @@
class puppet_cd::main::install (
) inherits puppet_cd::params {
package { $pt_agent_pkg:
ensure => $pt_pkg_ensure,
if $fqdn != $pt_pm_fqdn {
package { $pt_agent_pkg:
ensure => $pt_pkg_ensure,
}
if $pt_use_puppetdb == true {
package { $pt_puppetdb_pkg:
ensure => $pt_pkg_ensure,
}
}
}
if $fqdn == $pt_pm_fqdn {