13 lines
473 B
Puppet
13 lines
473 B
Puppet
## confdroid_postgresql::exporter::files.pp
|
|
# Module name: confdroid_postgresql
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary Class manages the postgresql exporter files
|
|
###############################################################################
|
|
class confdroid_postgresql::exporter::files (
|
|
|
|
) inherits confdroid_postgresql::params {
|
|
if ($fqdn == $pl_server_fqdn) and ($pl_use_exporter == true) {
|
|
require confdroid_postgresql::exporter::dirs
|
|
}
|
|
}
|