Rename package resouce for pythonX-redis

puppet-aodh uses python-redis name for the package resource used to
install the python bindings [1] so we need to use the same name.
Otherwise it fails because of conflicting names when using python3.

[1] https://github.com/openstack/puppet-aodh/blob/master/manifests/evaluator.pp#L43

Change-Id: I96d1106ecfecd1bd1425770ff21bbb469f08af9c
This commit is contained in:
Alfredo Moralejo 2019-05-16 12:40:53 +02:00
parent 88353e8267
commit 9852f01d04
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class packstack::ceilometer ()
$redis_port = hiera('CONFIG_REDIS_PORT')
$coordination_url = "redis://${redis_host}:${redis_port}"
ensure_resource('package', "python${pyvers}-redis", {
ensure_resource('package', "python-redis", {
name => "python${pyvers}-redis",
tag => 'openstack',
})