diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c0c63d2 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "cSpell.words": [ + "fontconfig" + ] +} \ No newline at end of file diff --git a/manifests/params.pp b/manifests/params.pp index c8997e7..dcbcd56 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -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', ) {