3
0

OP#200 replace class names

This commit is contained in:
2025-12-04 19:49:59 +01:00
parent 363f546191
commit b97d83be3b
17 changed files with 101 additions and 101 deletions

View File

@@ -1,11 +1,11 @@
## postgresql_cd::exporter::dirs.pp
# Module name: postgresql_cd
## confdroid_postgresql::exporter::dirs.pp
# Module name: confdroid_postgresql
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages the postgresql exporter dirs
###############################################################################
class postgresql_cd::exporter::dirs (
class confdroid_postgresql::exporter::dirs (
) inherits postgresql_cd::params {
) inherits confdroid_postgresql::params {
if ($fqdn == $pl_server_fqdn) and ($pl_use_exporter == true) {
file { $pl_install_dir:
ensure => directory,

View File

@@ -1,12 +1,12 @@
## postgresql_cd::exporter::files.pp
# Module name: postgresql_cd
## confdroid_postgresql::exporter::files.pp
# Module name: confdroid_postgresql
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages the postgresql exporter files
###############################################################################
class postgresql_cd::exporter::files (
class confdroid_postgresql::exporter::files (
) inherits postgresql_cd::params {
) inherits confdroid_postgresql::params {
if ($fqdn == $pl_server_fqdn) and ($pl_use_exporter == true) {
require postgresql_cd::exporter::dirs
require confdroid_postgresql::exporter::dirs
}
}

View File

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