Files
confdroid_haproxy/manifests/main/install.pp
Arne Teuke f09b452830 lint params
2025-03-02 16:28:57 +01:00

17 lines
439 B
Puppet

## haproxy_cd::main::install.pp
# Module name: haproxy_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manage all aspects of installing binaries required for
# haproxy_cd
###############################################################################
class haproxy_cd::main::install (
) inherits haproxy_cd::params {
if $fqdn == $hy_host_fqdn {
package {$reqpackages:
ensure => $pkg_ensure,
}
}
}