From 984c114758dcf5c232323c3e58e76636d594a54f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 18 Oct 2022 10:38:33 +0900 Subject: [PATCH] Ceilometer: Remove redundant installation of pythonN-redis The pythonN-redis is indirectly required by the ceilometer-common package (ceilmeter-common -> pythonN-tooz -> pythonN-redis) so we no longer need to install the package explicitly. Change-Id: I45b17579c2fcbd8f1f8027043b57ee3b14950831 --- packstack/puppet/modules/packstack/manifests/ceilometer.pp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packstack/puppet/modules/packstack/manifests/ceilometer.pp b/packstack/puppet/modules/packstack/manifests/ceilometer.pp index b07f213f8..be0ebbe73 100644 --- a/packstack/puppet/modules/packstack/manifests/ceilometer.pp +++ b/packstack/puppet/modules/packstack/manifests/ceilometer.pp @@ -17,11 +17,6 @@ class packstack::ceilometer () $redis_host = lookup('CONFIG_REDIS_HOST_URL') $redis_port = lookup('CONFIG_REDIS_PORT') $coordination_url = "redis://${redis_host}:${redis_port}" - - ensure_packages('python-redis', { - name => "python${pyvers}-redis", - tag => 'openstack', - }) } else { $coordination_url = '' }