From 90949f76e722afd1a89de58f48c71aadb10bc9f0 Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Tue, 25 Feb 2025 18:09:01 +0100 Subject: [PATCH] add config --- maifests/main/config.pp | 10 ++++++++++ maifests/params.pp | 4 ++++ 2 files changed, 14 insertions(+) create mode 100644 maifests/main/config.pp 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 }