18 lines
579 B
Puppet
18 lines
579 B
Puppet
## 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 == $ma_server_fqdn) and ($pl_enable_fw == true) {
|
|
firewall { "${pl_fw_rule_order}${pl_fw_port} tcp port ${pl_fw_port}":
|
|
source => $pl_source_range,
|
|
proto => 'tcp',
|
|
dport => $pl_fw_port,
|
|
jump => 'accept',
|
|
}
|
|
}
|
|
}
|