17 lines
439 B
Puppet
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,
|
|
}
|
|
}
|
|
}
|