2025-02-25 17:06:07 +01:00
|
|
|
## puppet_cd::params.pp
|
|
|
|
|
# Module name: puppet_cd
|
|
|
|
|
# Author: Arne Teuke (arne_teuke@confdroid)
|
|
|
|
|
# @summary Class manages parameters for the puppet_cd module.
|
|
|
|
|
###############################################################################
|
|
|
|
|
class puppet_cd::params (
|
|
|
|
|
|
2025-02-25 18:09:01 +01:00
|
|
|
$pt_manage_fw = true,
|
|
|
|
|
$pt_puppetmaster = undef,
|
|
|
|
|
|
2025-02-25 17:06:07 +01:00
|
|
|
) {
|
|
|
|
|
|
2025-02-25 23:32:54 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
$fqdn = $servername
|
|
|
|
|
|
2025-02-25 18:16:08 +01:00
|
|
|
# includes must be last
|
2025-02-25 18:09:01 +01:00
|
|
|
include puppet_cd::main::config
|
2025-02-25 17:06:07 +01:00
|
|
|
|
|
|
|
|
}
|