puppet-openstack-integration/manifests/init.pp
Takashi Kajinami df3d689042 Ensure os_keepalived_dac_override is enabled
According to [1], the dac override options may be disabled in a future
release.

[1] https://bugzilla.redhat.com/show_bug.cgi?id=2000945

Change-Id: I3779072f9213fee03f350cc9a8786072c318037d
2023-12-21 19:37:16 +09:00

11 lines
184 B
Puppet

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