From a9cc05056e8b8260467e2ccbad684e5ffec14d0b Mon Sep 17 00:00:00 2001 From: Logan McNaughton Date: Mon, 29 Jul 2013 21:55:29 -0600 Subject: [PATCH] Horizon needs this selinux boolean set See: https://bugzilla.redhat.com/show_bug.cgi?id=978568 https://github.com/stackforge/packstack/blob/master/packstack/puppet/templates/horizon.pp Change-Id: I1cbf181625bfcb3b23fd57d8342fb72743342ebc --- manifests/horizon.pp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manifests/horizon.pp b/manifests/horizon.pp index f0b54b1..548d94a 100644 --- a/manifests/horizon.pp +++ b/manifests/horizon.pp @@ -100,4 +100,11 @@ class openstack::horizon ( django_debug => $django_debug, api_result_limit => $api_result_limit, } + + if $::selinux { + selboolean{'httpd_can_network_connect': + value => on, + persistent => true, + } + } }