21 lines
457 B
ObjectPascal
21 lines
457 B
ObjectPascal
|
|
## 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
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|