Recommit for updates in build 5

This commit is contained in:
Jenkins Server
2026-09-05 12:59:46 +02:00
parent b9997604a2
commit aa92f1c5a5
2 changed files with 40 additions and 4 deletions

View File

@@ -117,7 +117,15 @@
19
20
21
22</pre>
22
23
24
25
26
27
28
29
30</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/firewall/iptables.pp', line 6</span>
@@ -137,6 +145,14 @@ class confdroid_haproxy::firewall::iptables (
dport =&gt; $hy_https_port,
jump =&gt; &#39;accept&#39;,
}
if $hy_show_stats == true {
firewall { &quot;${hy_fw_order_no}${hy_stats_port} tcp port ${hy_stats_port}&quot;:
proto =&gt; &#39;tcp&#39;,
dport =&gt; $hy_stats_port,
jump =&gt; &#39;accept&#39;,
}
}
}
}</pre>
</td>

View File

@@ -879,6 +879,24 @@
&mdash;
<div class='inline'>
<p>whether to allow stats in selinux</p>
</div>
</li>
<li>
<span class='name'>hy_stats_port</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;8404&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>the port to use for stats. used in firewall settings</p>
</div>
</li>
@@ -894,7 +912,6 @@
<pre class="lines">
59
60
61
62
@@ -985,10 +1002,12 @@
147
148
149
150</pre>
150
151
152</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 59</span>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 60</span>
class confdroid_haproxy::params (
@@ -1010,6 +1029,7 @@ class confdroid_haproxy::params (
# main config
String $hy_http_port = &#39;80&#39;,
String $hy_https_port = &#39;443&#39;,
String $hy_stats_port = &#39;8404&#39;,
String $hy_chroot = &#39;/var/lib/haproxy&#39;,
String $hy_pid = &#39;/var/run/haproxy.pid&#39;,
String $hy_maxconn = &#39;4000&#39;,