fix class names

This commit is contained in:
Arne Teuke
2025-03-02 13:49:35 +01:00
parent c3b62f8b91
commit 5a480f2248
9 changed files with 47 additions and 47 deletions

View File

@@ -1,15 +1,15 @@
## cd_alloy::main::files.pp
# Module name: cd_alloy
## alloy_cd::main::files.pp
# Module name: alloy_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages required config files for the cd_alloy module
# @summary Class manages required config files for the alloy_cd module
###############################################################################
class cd_alloy::main::files (
class alloy_cd::main::files (
) inherits cd_alloy::params {
require cd_alloy::main::dirs
) inherits alloy_cd::params {
require alloy_cd::main::dirs
# Ensure log_targets is always an array
$log_targets_array = Array($cd_alloy::params::ay_log_targets, true)
$log_targets_array = Array($alloy_cd::params::ay_log_targets, true)
file { $ay_main_file:
ensure => file,
@@ -20,7 +20,7 @@ class cd_alloy::main::files (
selrole => object_r,
seltype => etc_t,
seluser => system_u,
content => template('cd_alloy/config.alloy.erb'),
content => template('alloy_cd/config.alloy.erb'),
notify => Service[$ay_service],
}
}