From d204da8ea8757c428ead45df3cff4c7fe3b85f12 Mon Sep 17 00:00:00 2001 From: Quique Llorente Date: Tue, 6 Nov 2018 17:31:54 +0100 Subject: [PATCH] Install python3-gnocchi in Fedora or RedHat > 7 Fedora repo [1] has python3 packages, start consuming those. [1] http://trunk.rdoproject.org/fedora/puppet-passed-ci/ Change-Id: I4af4af40749f63ccc4b3294007c204a739b57930 --- manifests/params.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/params.pp b/manifests/params.pp index a5bd9658..e3653074 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -5,7 +5,8 @@ class gnocchi::params { include ::openstacklib::defaults - if ($::os_package_type == 'debian') { + if ($::os_package_type == 'debian') or ($::os['name'] == 'Fedora') or + ($::os['family'] == 'RedHat' and Integer.new($::os['release']['major']) > 7) { $pyvers = '3' } else { $pyvers = ''