From 9473712e9da1b548e0b4f891409f5194927bb8ca Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Fri, 5 Dec 2025 15:00:10 +0100 Subject: [PATCH] Recommit for updates in build 15 --- ...gresql_3A_3Abouncer_3A_3Abouncer_rule.html | 41 +++++++++++++++---- 1 file changed, 33 insertions(+), 8 deletions(-) diff --git a/doc/puppet_defined_types/confdroid_postgresql_3A_3Abouncer_3A_3Abouncer_rule.html b/doc/puppet_defined_types/confdroid_postgresql_3A_3Abouncer_3A_3Abouncer_rule.html index fd74482..25d453e 100644 --- a/doc/puppet_defined_types/confdroid_postgresql_3A_3Abouncer_3A_3Abouncer_rule.html +++ b/doc/puppet_defined_types/confdroid_postgresql_3A_3Abouncer_3A_3Abouncer_rule.html @@ -143,7 +143,7 @@
  • - pl_bounce_order + pl_bouncer_user (String) @@ -152,6 +152,29 @@ (defaults to: undef) + — +
    +

    user for the connection. Must be defined in userlist.txt

    +
    + +
  • + +
  • + + pl_bouncer_order + + + (String) + + + (defaults to: undef) + + + — +
    +

    the order in which the rule should appear

    +
    +
  • @@ -172,9 +195,6 @@
     
     
    -10
    -11
    -12
     13
     14
     15
    @@ -188,17 +208,22 @@
     23
     24
     25
    -26
    +26 +27 +28 +29 +30 -
    # File 'manifests/bouncer/bouncer_rule.pp', line 10
    +        
    # File 'manifests/bouncer/bouncer_rule.pp', line 13
     
     define confdroid_postgresql::bouncer::bouncer_rule (
     
       String $pl_bouncer_db_name  = undef,
       String $pl_bouncer_host     = '127.0.0.1',
       String $pl_bouncer_port     = '5432',
    -  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 { "pl_bouncer_rule_${name}":
         target  => $pl_bouncer_ini_file,
         content => template($pl_bouncer_ini_erb),
    -    order   => $pl_bounce_order,
    +    order   => $pl_bouncer_order,
       }
     }