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,14 +1,14 @@
## postgresql_cd::main::files.pp
# Module name: postgresql_cd
## confdroid_postgresql::main::files.pp
# Module name: confdroid_postgresql
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages logic for the postgresql_cd module.
# @summary Class manages logic for the confdroid_postgresql module.
##############################################################################
class postgresql_cd::main::files (
class confdroid_postgresql::main::files (
) inherits postgresql_cd::params {
) inherits confdroid_postgresql::params {
if $fqdn == $pl_server_fqdn {
require postgresql_cd::server::initdb
require postgresql_cd::main::dirs
require confdroid_postgresql::server::initdb
require confdroid_postgresql::main::dirs
file { '/var/lib/pgsql/data/postgresql.conf':
ensure => file,
@@ -19,7 +19,7 @@ class postgresql_cd::main::files (
selrole => object_r,
seltype => postgresql_db_t,
seluser => unconfined_u,
content => template('postgresql_cd/postgresql.conf.erb'),
content => template('confdroid_postgresql/postgresql.conf.erb'),
notify => Service[$pl_service],
}
}