3
0

fix params

This commit is contained in:
Arne Teuke
2025-11-21 16:59:50 +01:00
parent ef27381ae8
commit c05c081041

View File

@@ -5,7 +5,7 @@
# @param [String] pl_server_fqdn the fqdn of the postgresql server. Any other # @param [String] pl_server_fqdn the fqdn of the postgresql server. Any other
# system will be configured as client # system will be configured as client
# @param [Array] reqpackages_server the packages for the server # @param [Array] reqpackages_server the packages for the server
# @param [Array] reqpackages_extensions the packages for extensions # @param [String] reqpackages_extensions the packages for extensions
# @param [String] reqpackages_client the packages for the client # @param [String] reqpackages_client the packages for the client
# @param [String] pkg_ensure which version of the packages to install, i.e. # @param [String] pkg_ensure which version of the packages to install, i.e.
# 'latest', 'present' '13.20', # 'latest', 'present' '13.20',
@@ -31,7 +31,7 @@ class postgresql_cd::params (
# installation # installation
Array $reqpackages_server = ['postgresql-server','postgresql-contrib'], Array $reqpackages_server = ['postgresql-server','postgresql-contrib'],
Array $reqpackages_extensions = ['pg_stat_statements','timescaledb'], String $reqpackages_extensions = 'timescaledb',
String $reqpackages_client = 'postgresql', String $reqpackages_client = 'postgresql',
String $pkg_ensure = 'latest', String $pkg_ensure = 'latest',