2025-02-26 01:55:17 +01:00
|
|
|
## puppet_cd::main::files.pp
|
|
|
|
|
# Module name: puppet_cd
|
|
|
|
|
# Author: Arne Teuke (arne_teuke@confdroid)
|
|
|
|
|
# @summary Class manages config files for the puppet_cd module.
|
|
|
|
|
###############################################################################
|
|
|
|
|
class puppet_cd::main::files (
|
|
|
|
|
|
|
|
|
|
) inherits puppet_cd::params {
|
|
|
|
|
|
2025-02-26 02:18:15 +01:00
|
|
|
include puppet_cd::main::dirs
|
2025-02-26 01:55:17 +01:00
|
|
|
|
2025-02-26 02:00:30 +01:00
|
|
|
# if $fqdn == $pt_puppetmaster {
|
|
|
|
|
# # server files
|
|
|
|
|
# }
|
2025-02-26 01:55:17 +01:00
|
|
|
|
2025-02-26 02:00:30 +01:00
|
|
|
# if $fqdn != $pt_puppetmaster {
|
|
|
|
|
# # client files
|
|
|
|
|
# }
|
2025-02-26 01:55:17 +01:00
|
|
|
|
|
|
|
|
}
|