0b60cdd6a1
'apache' module is needed by 'horizon' 4.1.0 173967ab8dd21a93d6f2b47ff2641d0092f729b1 v 1.2.0 Fuel-CI: disable Partial blueprint: merge-openstack-puppet-modules Change-Id: I0f5ff2fafe058c0263c2ace4bc0ce8f7828d3be0
13 lines
393 B
Ruby
13 lines
393 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'disable selinux:', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
|
|
it "because otherwise apache won't work" do
|
|
apply_manifest(%{
|
|
exec { "setenforce 0":
|
|
path => "/bin:/sbin:/usr/bin:/usr/sbin",
|
|
onlyif => "which setenforce && getenforce | grep Enforcing",
|
|
}
|
|
}, :catch_failures => true)
|
|
end
|
|
end
|