2018-04-24 15:32:11 +02:00
|
|
|
## 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 {
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|