diff --git a/manifests/init.pp b/manifests/init.pp new file mode 100644 index 0000000..fb53533 --- /dev/null +++ b/manifests/init.pp @@ -0,0 +1,8 @@ +## cd_alloy::init.pp +# Module name: cd_alloy +# Author: Arne Teuke (arne_teuke@confdroid.com) +# @summary Class initializes the cd_alloy module. +############################################################################## +class cd_alloy { + include cd_alloy::params +} diff --git a/manifests/main/config.pp b/manifests/main/config.pp new file mode 100644 index 0000000..c331cba --- /dev/null +++ b/manifests/main/config.pp @@ -0,0 +1,10 @@ +## cd_alloy::config.pp +# Module name: cd_alloy +# Author: Arne Teuke (arne_teuke@confdroid.com) +# @summary Class manages module logic for the cd_alloy module. +############################################################################## +class cd_alloy::config ( + +) inherits cd_alloy::params { + +} diff --git a/manifests/params.pp b/manifests/params.pp new file mode 100644 index 0000000..f13d3da --- /dev/null +++ b/manifests/params.pp @@ -0,0 +1,13 @@ +## cd_alloy::params.pp +# Module name: cd_alloy +# Author: Arne Teuke (arne_teuke@confdroid.com) +# @summary Class contains all parameters for the cd_alloy module. +############################################################################## +class cd_alloy::params ( + +) { + + + # includes must be last + +}