diff --git a/manifests/redis.pp b/manifests/redis.pp index fe731534a..c2948d797 100644 --- a/manifests/redis.pp +++ b/manifests/redis.pp @@ -1,8 +1,17 @@ class openstack_integration::redis { include ::openstack_integration::config + # due to issues in OpenStack CI with the redis package, we need to disable + # the service enable flag. The service still starts but the management of + # the service with systemd errors. + if ($::os_package_type == 'debian') { + $service_enable = false + } else { + $service_enable = true + } + class { '::redis': bind => $::openstack_integration::config::host, - service_enable => false + service_enable => $service_enable } }

AltStyle によって変換されたページ (->オリジナル) /