Files
confdroid_haproxy/manifests/main/install.pp

17 lines
439 B
ObjectPascal
Raw Normal View History

2025-03-02 16:28:57 +01:00
## haproxy_cd::main::install.pp
# Module name: haproxy_cd
2018-04-24 15:32:11 +02:00
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manage all aspects of installing binaries required for
2025-03-02 16:28:57 +01:00
# haproxy_cd
2018-04-24 15:32:11 +02:00
###############################################################################
2025-03-02 16:28:57 +01:00
class haproxy_cd::main::install (
2018-04-24 15:32:11 +02:00
2025-03-02 16:28:57 +01:00
) inherits haproxy_cd::params {
2018-04-24 15:32:11 +02:00
2018-12-10 14:36:54 +01:00
if $fqdn == $hy_host_fqdn {
package {$reqpackages:
ensure => $pkg_ensure,
}
2018-04-24 15:32:11 +02:00
}
}