## postgresql_cd::firewall::iptables.pp # Module name: postgresql_cd # Author: Arne Teuke (arne_teuke@confdroid.com) # @summary Class manages the alloy iptables ############################################################################### class postgresql_cd::firewall::iptables ( ) inherits postgresql_cd::params { if ($fqdn == $pl_server_fqdn) and ($pl_enable_fw == true) { firewall { "${pl_fw_rule_order}${pl_fw_port} tcp port": source => $pl_source_range, proto => 'tcp', dport => $pl_fw_port, jump => 'accept', } } }