3
0
Files
confdroid_postgresql/manifests/exporter/service.pp
2025-11-21 15:45:25 +01:00

20 lines
600 B
Puppet

## postgresql_cd::exporter::service.pp
# Module name: postgresql_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages the postgresql exporter service
###############################################################################
class postgresql_cd::exporter::service (
) inherits postgresql_cd::params {
if ($fqdn == $pl_server_fqdn) and ($pl_use_exporter == true) {
require postgresql_cd::exporter::files
# service { $pl_exporter_service:
# ensure => running,
# hasstatus => true,
# hasrestart => true,
# enable => true,
# }
}
}