diff --git a/maifests/main/config.pp b/maifests/main/config.pp new file mode 100644 index 0000000..27d8057 --- /dev/null +++ b/maifests/main/config.pp @@ -0,0 +1,10 @@ +## puppet_cd::main::config.pp +# Module name: puppet_cd +# Author: Arne Teuke (arne_teuke@confdroid) +# @summary Class manages parameters for the puppet_cd module. +############################################################################### +class puppet_cd::main::config ( + +) inherits puppet_cd::params { + +} diff --git a/maifests/params.pp b/maifests/params.pp index ff67dee..90adde4 100644 --- a/maifests/params.pp +++ b/maifests/params.pp @@ -5,7 +5,11 @@ ############################################################################### class puppet_cd::params ( + $pt_manage_fw = true, + $pt_puppetmaster = undef, + ) { + include puppet_cd::main::config }