Get rid of the $pyvers variable

Since everyone has switched to Python3, it's time for the removal of the
$pyvers variable.

Change-Id: Iebaeb757d2b989f8307a47f57d7aff6071527836
This commit is contained in:
Thomas Goirand 2021-06-14 09:37:56 +02:00
parent b07c761623
commit 4d2d6bfe8e
2 changed files with 2 additions and 11 deletions

View File

@ -4,9 +4,8 @@
#
class trove::params {
include openstacklib::defaults
$pyvers = $::openstacklib::defaults::pyvers
$client_package_name = "python${pyvers}-troveclient"
$client_package_name = 'python3-troveclient'
$group = 'trove'
case $::osfamily {

View File

@ -59,15 +59,7 @@ describe 'trove::client' do
when 'Debian'
{ :client_package_name => 'python3-troveclient' }
when 'RedHat'
if facts[:operatingsystem] == 'Fedora'
{ :client_package_name => 'python3-troveclient' }
else
if facts[:operatingsystemmajrelease] > '7'
{ :client_package_name => 'python3-troveclient' }
else
{ :client_package_name => 'python-troveclient' }
end
end
{ :client_package_name => 'python3-troveclient' }
end
end