15 lines
430 B
Puppet
15 lines
430 B
Puppet
## haproxy_cd::main::config.pp
|
|
# Module name: haproxy_cd
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary Class manages module logic for haproxy_cd.
|
|
##############################################################################
|
|
class haproxy_cd::main::config (
|
|
|
|
) inherits haproxy_cd::params {
|
|
include haproxy_cd::server::service
|
|
|
|
if $hy_manage_fail2ban == true {
|
|
include haproxy_cd::monitoring::fail2ban
|
|
}
|
|
}
|