Files
confdroid_nagios/manifests/firewall/iptables.pp

22 lines
680 B
ObjectPascal
Raw Normal View History

2017-07-20 14:47:24 +01:00
## cd_nagios::firewall::iptables.pp
# Module name: cd_nagios
# Author: Arne Teuke (arne_teuke@ConfDroid.com)
# @summary manage firewall settings through cd_firewall or puppetlabs-firewall
###############################################################################
class cd_nagios::firewall::iptables (
) inherits cd_nagios::params {
if $::fqdn == $ng_nagios_server {
if $ng_use_https != true {
2024-12-19 10:54:52 +01:00
include confdroid_infrastructure::firewall::http
2017-07-20 14:47:24 +01:00
2025-05-12 15:56:17 +02:00
if $ng_use_https == true {
include confdroid_infrastructure::firewall::https
if $ng_http_https_fw == true {
include confdroid_infrastructure::firewall::http
2017-07-20 14:47:24 +01:00
}
}
}
}
}