21 lines
463 B
Puppet
21 lines
463 B
Puppet
## 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 {
|
|
|
|
include puppet_cd::main::dirs
|
|
|
|
# if $fqdn == $pt_puppetmaster {
|
|
# # server files
|
|
# }
|
|
|
|
# if $fqdn != $pt_puppetmaster {
|
|
# # client files
|
|
# }
|
|
|
|
}
|