28007a665d
By default, repositories will be managed by puppet through manifests/repos.pp. If someone wants to set up different repositories outside of puppet entirely, he can "export MANAGE_REPOS=false" and run_tests will not run repos.pp. Change-Id: I3a09a2be1d2a064e784ed24f189fec41476330d9
11 lines
174 B
Puppet
11 lines
174 B
Puppet
class openstack_integration {
|
|
|
|
Exec { logoutput => 'on_failure' }
|
|
|
|
if $::osfamily == 'RedHat' {
|
|
package { 'openstack-selinux':
|
|
ensure => 'latest'
|
|
}
|
|
}
|
|
}
|