3
0

recommit for updates in build 23

This commit is contained in:
2025-04-19 12:35:37 +02:00
parent f504d55a82
commit 3fa68c8eea

View File

@@ -270,6 +270,42 @@ client</p>
&mdash; &mdash;
<div class='inline'> <div class='inline'>
<p>which address should the service listen on</p> <p>which address should the service listen on</p>
</div>
</li>
<li>
<span class='name'>pl_listen_port</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;5432&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>which port should the service listen on</p>
</div>
</li>
<li>
<span class='name'>pl_max_conn</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;100&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>maximum connections the service will accept</p>
</div> </div>
</li> </li>
@@ -285,8 +321,6 @@ client</p>
<pre class="lines"> <pre class="lines">
17
18
19 19
20 20
21 21
@@ -317,10 +351,14 @@ client</p>
46 46
47 47
48 48
49</pre> 49
50
51
52
53</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 17</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 19</span>
class postgresql_cd::params ( class postgresql_cd::params (
@@ -339,6 +377,8 @@ class postgresql_cd::params (
# main config # main config
String $pl_listen_address = &#39;*&#39;, String $pl_listen_address = &#39;*&#39;,
String $pl_listen_port = &#39;5432&#39;,
String $pl_max_conn = &#39;100&#39;,
) { ) {
$fqdn = $facts[&#39;networking&#39;][&#39;fqdn&#39;] $fqdn = $facts[&#39;networking&#39;][&#39;fqdn&#39;]