3
0

recommit for updates in build 47

This commit is contained in:
2025-02-26 16:07:03 +01:00
parent 52c8b060c1
commit fc5c32aebb
3 changed files with 12 additions and 6 deletions

View File

@@ -86,6 +86,9 @@ production</em></strong></p>
<h2 id="label-Features">Features</h2> <h2 id="label-Features">Features</h2>
<ul><li> <ul><li>
<p>install repo rpm (this will create the repo definitions)</p> <p>install repo rpm (this will create the repo definitions)</p>
</li><li>
<p>install packages depending on whether the host fqdn equals either master
fqdn, db fqdn or none (agent).</p>
</li></ul> </li></ul>
<h2 id="label-Support">Support</h2> <h2 id="label-Support">Support</h2>

View File

@@ -86,6 +86,9 @@ production</em></strong></p>
<h2 id="label-Features">Features</h2> <h2 id="label-Features">Features</h2>
<ul><li> <ul><li>
<p>install repo rpm (this will create the repo definitions)</p> <p>install repo rpm (this will create the repo definitions)</p>
</li><li>
<p>install packages depending on whether the host fqdn equals either master
fqdn, db fqdn or none (agent).</p>
</li></ul> </li></ul>
<h2 id="label-Support">Support</h2> <h2 id="label-Support">Support</h2>

View File

@@ -126,9 +126,9 @@
class puppet_cd::server::service ( class puppet_cd::server::service (
) inherits puppet_cd::params { ) inherits puppet_cd::params {
if $fqdn == $pt_pm_fqdn { if $fqdn == $pt_pm_fqdn {
# manager requirement
require puppet_cd::firewall::iptables require puppet_cd::firewall::iptables
require puppet_cd::main::files require puppet_cd::main::files
@@ -136,10 +136,10 @@ class puppet_cd::server::service (
# manage puppet server service # manage puppet server service
service { $pt_service: service { $pt_service:
ensure =&gt; running, ensure =&gt; running,
hasstatus =&gt; true, hasstatus =&gt; true,
hasrestart =&gt; true, hasrestart =&gt; true,
enable =&gt; true, enable =&gt; true,
} }
} }
}</pre> }</pre>