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

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,
}
}
}