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 @@
user for the connection. Must be defined in userlist.txt
+the order in which the rule should appear
+-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,
}
}