3
0

adds installation

This commit is contained in:
Arne Teuke
2025-04-18 22:06:28 +02:00
parent a9e190d0f7
commit 2cdfd93708
3 changed files with 42 additions and 2 deletions

View File

@@ -6,5 +6,5 @@
class postgresql_cd::main::config (
) inherits postgresql_cd::params {
include postgresql_cd::main::install
}

23
manifests/main/install.pp Normal file
View File

@@ -0,0 +1,23 @@
## postgresql_cd::main::install.pp
# Module name: postgresql_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages logic for the postgresql_cd module.
##############################################################################
class postgresql_cd::main::install (
) inherits postgresql_cd::params {
if $fqdn == $pl_server_fqdn {
package { $reqpackages_server:
ensure => $pkg_ensure,
}
package { $reqpackages_client:
ensure => $pkg_ensure,
}
}
if $fqdn != $pl_server_fqdn {
package { $reqpackages_client:
ensure => $pkg_ensure,
}
}
}

View File

@@ -1,13 +1,30 @@
## postgresql_cd::params.pp
# Module name: postgresql_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @param [string] pl_server_fqdn the fqdn of the postgresql server. Any other
# system will be configured as client
# @param [string] reqpackages_server the packages for the server
# @param [string] reqpackages_client the packages for the client
# @param [string] pkg_ensure which version of the packages to install, i.e.
# 'latest', 'present' '13.20',
# @summary Class contains all parameters for the postgresql_cd module.
##############################################################################
class postgresql_cd::params (
String $pl_server_fqdn = undef,
# installation
String $reqpackages_server = 'postgresql-server',
String $reqpackages_client = 'postgresql',
String $pkg_ensure = 'latest',
) {
$fqdn = $facts['networking']['fqdn']
$domain = $facts['networking']['domain']
$os_name = $facts['os']['name']
$os_release = $facts['os']['release']['major']
# includes must be last
include postgresql_cd::main::config
}