summaryrefslogtreecommitdiffstats
path: root/puppet/opnfv/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/opnfv/manifests/init.pp')
-rw-r--r--puppet/opnfv/manifests/init.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/puppet/opnfv/manifests/init.pp b/puppet/opnfv/manifests/init.pp
new file mode 100644
index 000000000..9c00fdd71
--- /dev/null
+++ b/puppet/opnfv/manifests/init.pp
@@ -0,0 +1,10 @@
+class opnfv {
+ # cent rpms don't setup selinux
+ # correctly for ovs to set odl as
+ # its manager. disabling it till
+ # that's fixed.
+ exec {'disable selinux':
+ command => '/usr/sbin/setenforce 0',
+ unless => '/usr/sbin/getenforce | grep Permissive',
+ }
+}