From 50a60e84ae746965197d360648f1ff866abd0c90 Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Sun, 23 Feb 2025 14:34:15 +0100 Subject: [PATCH] add basic classes --- manifests/init.pp | 8 ++++++++ manifests/main/config.pp | 10 ++++++++++ manifests/params.pp | 13 +++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 manifests/init.pp create mode 100644 manifests/main/config.pp create mode 100644 manifests/params.pp 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 + +}