set up basic structure
This commit is contained in:
@@ -4,6 +4,6 @@
|
||||
# @summary Class manages the module logic for the prometheus_cd module.
|
||||
##############################################################################
|
||||
class prometheus_cd::main::config (
|
||||
|
||||
) inherits prometheus_cd::params {
|
||||
include prometheus_cd::main::service
|
||||
}
|
||||
|
||||
9
manifests/main/dirs.pp
Normal file
9
manifests/main/dirs.pp
Normal file
@@ -0,0 +1,9 @@
|
||||
# prometheus_cd::main::dirs.pp
|
||||
# Module name: prometheus_cd
|
||||
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||
# @summary Class manages directories for the prometheus_cd module.
|
||||
##############################################################################
|
||||
class prometheus_cd::main::dirs (
|
||||
) inherits prometheus_cd::params {
|
||||
require prometheus_cd::main::install
|
||||
}
|
||||
9
manifests/main/files.pp
Normal file
9
manifests/main/files.pp
Normal file
@@ -0,0 +1,9 @@
|
||||
# prometheus_cd::main::files.pp
|
||||
# Module name: prometheus_cd
|
||||
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||
# @summary Class manages configuration files for the prometheus_cd module.
|
||||
##############################################################################
|
||||
class prometheus_cd::main::files (
|
||||
) inherits prometheus_cd::params {
|
||||
require prometheus_cd::main::dirs
|
||||
}
|
||||
8
manifests/main/install.pp
Normal file
8
manifests/main/install.pp
Normal file
@@ -0,0 +1,8 @@
|
||||
# prometheus_cd::main::install.pp
|
||||
# Module name: prometheus_cd
|
||||
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||
# @summary Class install binaries for the prometheus_cd module.
|
||||
##############################################################################
|
||||
class prometheus_cd::main::install (
|
||||
) inherits prometheus_cd::params {
|
||||
}
|
||||
9
manifests/main/service.pp
Normal file
9
manifests/main/service.pp
Normal file
@@ -0,0 +1,9 @@
|
||||
# prometheus_cd::main::service.pp
|
||||
# Module name: prometheus_cd
|
||||
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||
# @summary Class manages the services for the prometheus_cd module.
|
||||
##############################################################################
|
||||
class prometheus_cd::main::service (
|
||||
) inherits prometheus_cd::params {
|
||||
require prometheus_cd::main::files
|
||||
}
|
||||
Reference in New Issue
Block a user