add installation and yumrepo

This commit is contained in:
Arne Teuke
2025-05-05 17:03:53 +02:00
parent 5adca39051
commit f56b72a23e
2 changed files with 7 additions and 2 deletions

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"cSpell.words": [
"fontconfig"
]
}

View File

@@ -2,12 +2,12 @@
# Module name: jenkins_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class holds all parameters for the jenkins_cd module.
# @param [string] reqpackages which packages to install
# @param [array] reqpackages which packages to install
# @param [string] pkg_ensure which packages to install
##############################################################################
class jenkins_cd::params (
String $reqpackages = 'java-21-openjdk.x86_64',
Array $reqpackages = ['jenkins','fontconfig'],
String $pkg_ensure = 'latest',
) {