adding puppet code for installation
[genesis.git] / puppet / opnfv / manifests / init.pp
diff --git a/puppet/opnfv/manifests/init.pp b/puppet/opnfv/manifests/init.pp
new file mode 100644 (file)
index 0000000..9c00fdd
--- /dev/null
@@ -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',
+    }
+}