Puppet Class: cd_haproxy::main::config
- Inherits:
- cd_haproxy::params
- Defined in:
- manifests/main/config.pp
Summary
Class manages all aspects of configuring the module logic for cd_haproxy.Overview
cd_haproxy::main::config.pp Module name: cd_haproxy Author: Arne Teuke (arne_teuke@confdroid.com)
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/main/config.pp', line 7
class cd_haproxy::main::config (
) inherits cd_haproxy::params {
include cd_haproxy::server::service
if $hy_manage_fail2ban == true {
include cd_haproxy::monitoring::fail2ban
}
}
|