From 3fa68c8eea9e15c10e4727aeec2e1b9ed8c3f0ba Mon Sep 17 00:00:00 2001 From: Jenkins ConfDroid Date: Sat, 19 Apr 2025 12:35:37 +0200 Subject: [PATCH] recommit for updates in build 23 --- .../postgresql_cd_3A_3Aparams.html | 48 +++++++++++++++++-- 1 file changed, 44 insertions(+), 4 deletions(-) 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

+
+ + + +
  • + + pl_listen_port + + + (String) + + + (defaults to: '5432') + + + — +
    +

    which port should the service listen on

    +
    + +
  • + +
  • + + pl_max_conn + + + (String) + + + (defaults to: '100') + + + — +
    +

    maximum connections the service will accept

  • @@ -285,8 +321,6 @@ client

     
     
    -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']