Puppet Class: cd_haproxy::main::install
- Inherits:
- cd_haproxy::params
- Defined in:
- manifests/main/install.pp
Summary
Class manage all aspects of installing binaries required for cd_haproxyOverview
cd_haproxy::main::install.pp Module name: cd_haproxy Author: Arne Teuke (arne_teuke@confdroid.com)
7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/main/install.pp', line 7
class cd_haproxy::main::install (
) inherits cd_haproxy::params {
if $fqdn == $hy_host_fqdn {
package {$reqpackages:
ensure => $pkg_ensure,
}
}
}
|