2025-03-02 16:28:57 +01:00
|
|
|
## haproxy_cd::main::config.pp
|
|
|
|
|
# Module name: haproxy_cd
|
2018-04-24 15:32:11 +02:00
|
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
|
|
|
# @summary Class manages all aspects of configuring the module logic for
|
2025-03-02 16:28:57 +01:00
|
|
|
# haproxy_cd.
|
2018-04-24 15:32:11 +02:00
|
|
|
##############################################################################
|
2025-03-02 16:28:57 +01:00
|
|
|
class haproxy_cd::main::config (
|
2018-04-24 15:32:11 +02:00
|
|
|
|
2025-03-02 16:28:57 +01:00
|
|
|
) inherits haproxy_cd::params {
|
2018-04-24 15:32:11 +02:00
|
|
|
|
2025-03-02 16:28:57 +01:00
|
|
|
include haproxy_cd::server::service
|
2018-04-24 15:32:11 +02:00
|
|
|
|
2025-02-14 11:41:18 +01:00
|
|
|
if $hy_manage_fail2ban == true {
|
|
|
|
|
|
2025-03-02 16:28:57 +01:00
|
|
|
include haproxy_cd::monitoring::fail2ban
|
2025-02-22 13:12:45 +01:00
|
|
|
|
2025-02-14 11:41:18 +01:00
|
|
|
}
|
2018-04-24 15:32:11 +02:00
|
|
|
}
|