3
0

Recommit for updates in build 15

This commit is contained in:
2025-12-05 15:00:10 +01:00
parent cee2425524
commit 9473712e9d

View File

@@ -143,7 +143,7 @@
<li>
<span class='name'>pl_bounce_order</span>
<span class='name'>pl_bouncer_user</span>
<span class='type'>(<tt>String</tt>)</span>
@@ -152,6 +152,29 @@
<em class="default">(defaults to: <tt>undef</tt>)</em>
&mdash;
<div class='inline'>
<p>user for the connection. Must be defined in userlist.txt</p>
</div>
</li>
<li>
<span class='name'>pl_bouncer_order</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>undef</tt>)</em>
&mdash;
<div class='inline'>
<p>the order in which the rule should appear</p>
</div>
</li>
</ul>
@@ -172,9 +195,6 @@
<pre class="lines">
10
11
12
13
14
15
@@ -188,17 +208,22 @@
23
24
25
26</pre>
26
27
28
29
30</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/bouncer/bouncer_rule.pp', line 10</span>
<pre class="code"><span class="info file"># File 'manifests/bouncer/bouncer_rule.pp', line 13</span>
define confdroid_postgresql::bouncer::bouncer_rule (
String $pl_bouncer_db_name = undef,
String $pl_bouncer_host = &#39;127.0.0.1&#39;,
String $pl_bouncer_port = &#39;5432&#39;,
String $pl_bounce_order = undef,
String $pl_bouncer_user = undef,
String $pl_bouncer_order = undef,
) {
$pl_bouncer_ini_file = $confdroid_postgresql::params::pl_bouncer_ini_file
@@ -207,7 +232,7 @@ define confdroid_postgresql::bouncer::bouncer_rule (
concat::fragment { &quot;pl_bouncer_rule_${name}&quot;:
target =&gt; $pl_bouncer_ini_file,
content =&gt; template($pl_bouncer_ini_erb),
order =&gt; $pl_bounce_order,
order =&gt; $pl_bouncer_order,
}
}</pre>
</td>