puppet-openstack-integration/manifests/init.pp
Takashi Kajinami 2f1d35f59c Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: I25d27829f66c4ee56e2755579dad21530ef09c3a
2023-03-01 13:30:01 +09:00

11 lines
185 B
Puppet

class openstack_integration {
Exec { logoutput => 'on_failure' }
if $facts['os']['family'] == 'RedHat' {
package { 'openstack-selinux':
ensure => 'latest'
}
}
}