Files
confdroid_haproxy/manifests/main/install.pp
2025-02-14 11:36:23 +01:00

17 lines
439 B
Puppet

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