19 lines
470 B
Puppet
19 lines
470 B
Puppet
## cd_haproxy::main::config.pp
|
|
# Module name: cd_haproxy
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary Class manages all aspects of configuring the module logic for
|
|
# cd_haproxy.
|
|
##############################################################################
|
|
class cd_haproxy::main::config (
|
|
|
|
) inherits cd_haproxy::params {
|
|
|
|
include cd_haproxy::server::service
|
|
|
|
if $hy_manage_fail2ban == true {
|
|
|
|
include cd_haproxy::monitoring::fail2ban
|
|
|
|
}
|
|
}
|