Fixed firewall module for Fedora 16.
This commit is contained in:
parent
fe0438e843
commit
974f6ce671
1 changed files with 4 additions and 1 deletions
|
@ -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" ],
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue