From: Yolanda Robla Mota Date: Fri, 14 Oct 2016 14:16:50 +0000 (+0200) Subject: Disable selinux for RHEL X-Git-Tag: danube.1.0~704^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=d6f8691b4ab5c207fc872d9c351af8435107108e;p=releng.git Disable selinux for RHEL It is causing some unexpected permission errors if that is enabled. Change-Id: I96c3131a55a1b7c83a655738938645f537ab48f6 Signed-Off-By: Yolanda Robla --- diff --git a/prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp b/prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp index a1e7d5d0e..6b608a7a7 100644 --- a/prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp +++ b/prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp @@ -239,5 +239,13 @@ class opnfv::server ( multiple => true, } + # disable selinux in case of RHEL + if ($::osfamily == 'RedHat') { + class { 'selinux': + mode => 'disabled', + } + } + + # update hosts create_resources('host', hiera_hash('hosts')) }