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,13 +1,13 @@
## postgresql_cd::server::initdb.pp
# Module name: postgresql_cd
## confdroid_postgresql::server::initdb.pp
# Module name: confdroid_postgresql
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class initiates the database
###############################################################################
class postgresql_cd::server::initdb (
class confdroid_postgresql::server::initdb (
) inherits postgresql_cd::params {
) inherits confdroid_postgresql::params {
if $fqdn == $pl_server_fqdn {
require postgresql_cd::main::install
require confdroid_postgresql::main::install
exec { 'init_pgsql_db':
command => 'postgresql-setup --initdb',
@@ -16,5 +16,5 @@ class postgresql_cd::server::initdb (
}
}
include postgresql_cd::main::files
include confdroid_postgresql::main::files
}