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:
Ivan Chavero
2014-05-29 10:10:22 -06:00
parent 4186acc464
commit 78553bd957

View File

@ -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,
}