15 lines
411 B
Puppet
15 lines
411 B
Puppet
## haproxy_cd::main::install.pp
|
|
# Module name: haproxy_cd
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary Class installs binaries required for haproxy_cd
|
|
###############################################################################
|
|
class haproxy_cd::main::install (
|
|
|
|
) inherits haproxy_cd::params {
|
|
if $fqdn == $hy_host_fqdn {
|
|
package { $reqpackages:
|
|
ensure => $pkg_ensure,
|
|
}
|
|
}
|
|
}
|