3
0

Recommit for updates in build 20

This commit is contained in:
2025-10-01 17:26:09 +02:00
parent 0b8c4438a5
commit b940812192
3 changed files with 20 additions and 20 deletions

View File

@@ -89,7 +89,7 @@
</li><li>
<p>manage service status</p>
</li><li>
<p>allow single entries in pg_hba via define</p>
<p>allow single line entries in pg_hba via define</p>
</li></ul>
<h2 id="label-Repo+Documentation">Repo Documentation</h2>

View File

@@ -89,7 +89,7 @@
</li><li>
<p>manage service status</p>
</li><li>
<p>allow single entries in pg_hba via define</p>
<p>allow single line entries in pg_hba via define</p>
</li></ul>
<h2 id="label-Repo+Documentation">Repo Documentation</h2>

View File

@@ -101,12 +101,12 @@ pg_hba_rule.pp
<p>postgresql_cd::server::pghba::pg_hba_rule { local access for role postgres:</p>
</div></p>
<pre class="example code"><code>psql_auth_type =&gt; &#39;local&#39;,
psql_auth_database =&gt; &#39;all&#39;,
psql_auth_user =&gt; &#39;postgres&#39;,
psql_auth_method =&gt; &#39;trust&#39;,
psql_auth_order =&gt; &#39;001&#39;,
psql_auth_option =&gt; &#39;&#39;,</code></pre>
<pre class="example code"><code>pl_auth_type =&gt; &#39;local&#39;,
pl_auth_database =&gt; &#39;all&#39;,
pl_auth_user =&gt; &#39;postgres&#39;,
pl_auth_method =&gt; &#39;trust&#39;,
pl_auth_order =&gt; &#39;001&#39;,
pl_auth_option =&gt; &#39;&#39;,</code></pre>
</div>
@@ -187,21 +187,21 @@ class postgresql_cd::server::pghba::pg_hba (
# manage default rules =&gt; should go into external config set
# postgresql_cd::server::pghba::pg_hba_rule { &#39;local access for role postgres&#39;:
# psql_auth_type =&gt; &#39;local&#39;,
# psql_auth_database =&gt; &#39;all&#39;,
# psql_auth_user =&gt; $ql_user_name,
# psql_auth_method =&gt; &#39;trust&#39;,
# psql_auth_order =&gt; &#39;001&#39;,
# psql_auth_option =&gt; $ql_auth_option,
# pl_auth_type =&gt; &#39;local&#39;,
# pl_auth_database =&gt; &#39;all&#39;,
# pl_auth_user =&gt; $ql_user_name,
# pl_auth_method =&gt; &#39;trust&#39;,
# pl_auth_order =&gt; &#39;001&#39;,
# pl_auth_option =&gt; $ql_auth_option,
# }
# postgresql_cd::server::pghba::pg_hba_rule { &#39;local access for all roles&#39;:
# psql_auth_type =&gt; &#39;local&#39;,
# psql_auth_database =&gt; &#39;all&#39;,
# psql_auth_user =&gt; &#39;all&#39;,
# psql_auth_method =&gt; &#39;trust&#39;,
# psql_auth_order =&gt; &#39;002&#39;,
# psql_auth_option =&gt; $pl_auth_option,
# pl_auth_type =&gt; &#39;local&#39;,
# pl_auth_database =&gt; &#39;all&#39;,
# pl_auth_user =&gt; &#39;all&#39;,
# pl_auth_method =&gt; &#39;trust&#39;,
# pl_auth_order =&gt; &#39;002&#39;,
# pl_auth_option =&gt; $pl_auth_option,
# }
}
}</pre>