blob: 9c00fdd71e7633444fabc6379f2438533317ce4a (
plain)
1
2
3
4
5
6
7
8
9
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',
}
}
|