initial commit and basic setup
This commit is contained in:
8
manifests/init.pp
Normal file
8
manifests/init.pp
Normal file
@@ -0,0 +1,8 @@
|
||||
# prometheus_cd::init.pp
|
||||
# Module name: prometheus_cd
|
||||
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||
# @summary Class initializes the prometheus_cd module.
|
||||
##############################################################################
|
||||
class prometheus_cd {
|
||||
include prometheus_cd::params
|
||||
}
|
||||
9
manifests/main/config.pp
Normal file
9
manifests/main/config.pp
Normal file
@@ -0,0 +1,9 @@
|
||||
# prometheus_cd::main::config.pp
|
||||
# Module name: prometheus_cd
|
||||
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||
# @summary Class manages the module logic for the prometheus_cd module.
|
||||
##############################################################################
|
||||
class prometheus_cd::main::config (
|
||||
|
||||
) inherits prometheus_cd::params {
|
||||
}
|
||||
11
manifests/params.pp
Normal file
11
manifests/params.pp
Normal file
@@ -0,0 +1,11 @@
|
||||
# prometheus_cd::params.pp
|
||||
# Module name: prometheus_cd
|
||||
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||
# @summary Class holds all parameters for the prometheus_cd module.
|
||||
##############################################################################
|
||||
class prometheus_cd (
|
||||
|
||||
) {
|
||||
# includes must be last
|
||||
include prometheus_cd::main::config
|
||||
}
|
||||
Reference in New Issue
Block a user