15 lines
444 B
Puppet
15 lines
444 B
Puppet
## postgresql_cd::main::config.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::config (
|
|
|
|
) inherits postgresql_cd::params {
|
|
include postgresql_cd::main::install
|
|
|
|
if $fqdn == $pl_server_fqdn {
|
|
include postgresql_cd::server::service
|
|
}
|
|
}
|