add installation section

This commit is contained in:
Arne Teuke
2025-06-02 16:41:08 +02:00
parent ceae52c179
commit 6211588b6d
3 changed files with 29 additions and 1 deletions

View File

@@ -2,9 +2,15 @@
# Module name: automatic_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages all parameters for the automatic_cd module
# @param [String] reqpackages which packages to install
# @param [String] pkg_ensure which version of packages to install
##############################################################################
class automatic_cd::params (
String $reqpackages = 'dnf-automatic',
String $pkg_ensure = 'latest',
) {
#
# includes must be last
include automatic_cd::main::config
}