3
0

set up basic structure

This commit is contained in:
Arne Teuke
2025-06-13 14:48:19 +02:00
parent 3a7bc8ac5b
commit 617f431f18
5 changed files with 36 additions and 1 deletions

View File

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

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

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