fix data type

This commit is contained in:
Arne Teuke
2025-06-08 12:32:47 +02:00
parent 23c44e78a9
commit 896bab6b58

View File

@@ -3,7 +3,7 @@
# Author: Arne Teuke (arne_teuke@confdroid.com) # Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class holds all parameters for the clamav_cd module and is # @summary Class holds all parameters for the clamav_cd module and is
# inherited by all classes except defines. # inherited by all classes except defines.
# @param [String] reqpackages List of packages to install. # @param [Array] reqpackages List of packages to install.
# @param [String] pkg_ensure # @param [String] pkg_ensure
# which [package type](https://confdroid.com/2017/05/puppet-type-package/) # which [package type](https://confdroid.com/2017/05/puppet-type-package/)
# to choose, i.e. `latest` or `present`. # to choose, i.e. `latest` or `present`.
@@ -29,7 +29,7 @@
class clamav_cd::params ( class clamav_cd::params (
# installation # installation
String $reqpackages = ['clamav','clamav-update','clamd'], Array $reqpackages = ['clamav','clamav-update','clamd'],
String $pkg_ensure = 'present', String $pkg_ensure = 'present',
# clamd # clamd