diff --git a/manifests/redis.pp b/manifests/redis.pp index 4b8168450..941ccf16a 100644 --- a/manifests/redis.pp +++ b/manifests/redis.pp @@ -1,27 +1,8 @@ class openstack_integration::redis { include openstack_integration::config - # TODO(tkajinam): Remove this once puppet-redis supports CentOS 9 - case $::osfamily { - 'Debian': { - $redis_config = '/etc/redis/redis.conf' - } - 'RedHat': { - if versioncmp($::operatingsystemmajrelease, '8') > 0 { - $redis_config = '/etc/redis/redis.conf' - } else { - $redis_config = '/etc/redis.conf' - } - } - default: { - fail("redis.pp manifest does not support family: ${::osfamily}") - } - } - class { 'redis': - bind => $::openstack_integration::config::host, - config_file => $redis_config, - config_file_orig => "${redis_config}.puppet", - ulimit_managed => false, + bind => $::openstack_integration::config::host, + ulimit_managed => false, } }