add basic classes

This commit is contained in:
Arne Teuke
2025-02-23 14:34:15 +01:00
parent 14100a474e
commit 50a60e84ae
3 changed files with 31 additions and 0 deletions

8
manifests/init.pp Normal file
View File

@@ -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
}

10
manifests/main/config.pp Normal file
View File

@@ -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 {
}

13
manifests/params.pp Normal file
View File

@@ -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
}