diff --git a/doc/puppet_classes/postgresql_cd_3A_3Aparams.html b/doc/puppet_classes/postgresql_cd_3A_3Aparams.html index 92f91e9..80709d2 100644 --- a/doc/puppet_classes/postgresql_cd_3A_3Aparams.html +++ b/doc/puppet_classes/postgresql_cd_3A_3Aparams.html @@ -270,6 +270,42 @@ client
—which address should the service listen on
+which port should the service listen on
+maximum connections the service will accept
-17 -18 19 20 21 @@ -317,10 +351,14 @@ client 46 47 48 -49+49 +50 +51 +52 +53
# File 'manifests/params.pp', line 17
+ # File 'manifests/params.pp', line 19
class postgresql_cd::params (
@@ -339,6 +377,8 @@ class postgresql_cd::params (
# main config
String $pl_listen_address = '*',
+ String $pl_listen_port = '5432',
+ String $pl_max_conn = '100',
) {
$fqdn = $facts['networking']['fqdn']