Inherit pyvers from openstacklib::defaults

Depends-On: I84b767921d151a61429b2c89e6372c4b447f0d7d
Change-Id: Ic5c4a5e5c50fb0058be94b3ee2ed9ceccb3eafdf
This commit is contained in:
Lee Yarwood 2019-01-11 13:19:17 +00:00 committed by Tobias Urdin
parent 2c4f5dcd2e
commit 01ac308d05
2 changed files with 2 additions and 11 deletions

View File

@ -4,13 +4,8 @@
#
class heat::params {
include ::openstacklib::defaults
$pyvers = $::openstacklib::defaults::pyvers
if ($::os_package_type == 'debian') or ($::os['name'] == 'Fedora') or
($::os['family'] == 'RedHat' and Integer.new($::os['release']['major']) > 7) {
$pyvers = '3'
} else {
$pyvers = ''
}
$client_package_name = "python${pyvers}-heatclient"
$group = 'heat'

View File

@ -38,11 +38,7 @@ describe 'heat::client' do
let(:platform_params) do
case facts[:osfamily]
when 'Debian'
if facts[:os_package_type] == 'debian'
{ :client_package_name => 'python3-heatclient' }
else
{ :client_package_name => 'python-heatclient' }
end
{ :client_package_name => 'python3-heatclient' }
when 'RedHat'
{ :client_package_name => 'python-heatclient' }
end