From 80e9bc3bb6e87bd780d514fcaec45877f4990591 Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Wed, 1 Oct 2025 16:32:26 +0200 Subject: [PATCH 1/2] remove line with order number to unclutter see https://gitlab.confdroid.com/internal/confdroid_management/-/issues/235 --- templates/server/pghba/pg_hba_rule.conf.erb | 1 - 1 file changed, 1 deletion(-) diff --git a/templates/server/pghba/pg_hba_rule.conf.erb b/templates/server/pghba/pg_hba_rule.conf.erb index 4cdf5a8..763230d 100644 --- a/templates/server/pghba/pg_hba_rule.conf.erb +++ b/templates/server/pghba/pg_hba_rule.conf.erb @@ -1,3 +1,2 @@ # description: <%=@name%> -# order number: <%=@pl_auth_order%> <%= @pl_auth_type %> <%= @pl_auth_database %> <%= @pl_auth_user %> <%= @pl_auth_address %> <%=@pl_auth_method %> <%=@psql_auth_option%> From 2be1f8a83f881d11ab3e2a39302b67c0cddde895 Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Wed, 1 Oct 2025 16:33:47 +0200 Subject: [PATCH 2/2] Recommit for updates in build 19 --- ...cd_3A_3Aserver_3A_3Apghba_3A_3Apg_hba.html | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Apghba_3A_3Apg_hba.html b/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Apghba_3A_3Apg_hba.html index a5b6901..06f63ef 100644 --- a/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Apghba_3A_3Apg_hba.html +++ b/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Apghba_3A_3Apg_hba.html @@ -101,12 +101,12 @@ pg_hba_rule.pp

postgresql_cd::server::pghba::pg_hba_rule { ‘local access for role postgres’:

-
psql_auth_type        => 'local',
-psql_auth_database    => 'all',
-psql_auth_user        => 'postgres',
-psql_auth_method      => 'trust',
-psql_auth_order       => '001',
-psql_auth_option      => '',
+
pl_auth_type        => 'local',
+pl_auth_database    => 'all',
+pl_auth_user        => 'postgres',
+pl_auth_method      => 'trust',
+pl_auth_order       => '001',
+pl_auth_option      => '',
@@ -187,21 +187,21 @@ class postgresql_cd::server::pghba::pg_hba ( # manage default rules => should go into external config set # postgresql_cd::server::pghba::pg_hba_rule { 'local access for role postgres': -# psql_auth_type => 'local', -# psql_auth_database => 'all', -# psql_auth_user => $ql_user_name, -# psql_auth_method => 'trust', -# psql_auth_order => '001', -# psql_auth_option => $ql_auth_option, +# pl_auth_type => 'local', +# pl_auth_database => 'all', +# pl_auth_user => $ql_user_name, +# pl_auth_method => 'trust', +# pl_auth_order => '001', +# pl_auth_option => $ql_auth_option, # } # postgresql_cd::server::pghba::pg_hba_rule { 'local access for all roles': -# psql_auth_type => 'local', -# psql_auth_database => 'all', -# psql_auth_user => 'all', -# psql_auth_method => 'trust', -# psql_auth_order => '002', -# psql_auth_option => $pl_auth_option, +# pl_auth_type => 'local', +# pl_auth_database => 'all', +# pl_auth_user => 'all', +# pl_auth_method => 'trust', +# pl_auth_order => '002', +# pl_auth_option => $pl_auth_option, # } } }