firewalld workaround
RHEL 7 and Fedora 20 uses firewalld by default so iptables rules were not being persistent through reboots. This patch disables firewalld so we can continue using the iptables rules while we come up with an integral workaround. Fixes: rhbz#1099840 Conflicts: packstack/puppet/templates/horizon.pp Change-Id: I123e546721632f52430288352c87c4b33d6328ec
This commit is contained in:
@ -18,3 +18,11 @@ if $::operatingsystem in $el_releases and $::operatingsystemrelease < 7 {
|
||||
warning => "${info}${warning}"
|
||||
}
|
||||
}
|
||||
|
||||
# Stop firewalld since everything uses iptables
|
||||
# for now
|
||||
|
||||
service { "firewalld":
|
||||
ensure => "stopped",
|
||||
enable => false,
|
||||
}
|
||||
|
Reference in New Issue
Block a user