lint pproxy params

This commit is contained in:
Arne Teuke
2025-03-02 17:51:51 +01:00
parent 7b457b232e
commit 4753b961c3

View File

@@ -4,7 +4,7 @@
# @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`.
# @param [string] reqpackages specify the packages to be installed # @param [array] reqpackages specify the packages to be installed
# @param [string] hy_host_fqdn the fqdn of the ha proxy host. must be fqdn, # @param [string] hy_host_fqdn the fqdn of the ha proxy host. must be fqdn,
# not cname. specify multiple fqdns via array. # not cname. specify multiple fqdns via array.
# @param [boolean] hy_manage_fw whether to manage the firewall. # @param [boolean] hy_manage_fw whether to manage the firewall.
@@ -76,7 +76,7 @@
class haproxy_cd::params ( class haproxy_cd::params (
String $pkg_ensure = 'latest', String $pkg_ensure = 'latest',
String $reqpackages = ['haproxy','httpd-tools'], Array $reqpackages = ['haproxy','httpd-tools'],
String $hy_host_fqdn = undef, String $hy_host_fqdn = undef,