diff --git a/firewall/manifests/init.pp b/firewall/manifests/init.pp index 27452e0..773f39b 100644 --- a/firewall/manifests/init.pp +++ b/firewall/manifests/init.pp @@ -76,7 +76,10 @@ class firewall::common::iptables { name => $operatingsystem ? { centos => [ "iptables", "iptables-ipv6" ], debian => [ "iptables", "iptables-persistent" ], - fedora => [ "iptables", "iptables-ipv6" ], + fedora => $operatingsystemrelease ? { + /^1[0-5]/ => [ "iptables", "iptables-ipv6" ], + default => "iptables", + }, ubuntu => [ "iptables", "iptables-persistent" ], }, }