puppet-openstack-integration/manifests/init.pp
David Moreau Simard 28007a665d Provide a toggle to disable repository management by puppet
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
2015-12-22 09:47:46 -05:00

11 lines
174 B
Puppet

class openstack_integration {
Exec { logoutput => 'on_failure' }
if $::osfamily == 'RedHat' {
package { 'openstack-selinux':
ensure => 'latest'
}
}
}