Merge "Inherit pyvers from openstacklib::defaults"

This commit is contained in:
Zuul 2019-01-19 15:18:17 +00:00 committed by Gerrit Code Review
commit cd1275bfff
2 changed files with 2 additions and 12 deletions

View File

@ -4,13 +4,7 @@
#
class mistral::params {
include ::openstacklib::defaults
if ($::os_package_type == 'debian') or ($::os['name'] == 'Fedora') or
($::os['family'] == 'RedHat' and Integer.new($::os['release']['major']) > 7) {
$pyvers = '3'
} else {
$pyvers = ''
}
$pyvers = $::openstacklib::defaults::pyvers
$client_package = "python${pyvers}-mistralclient"
$db_sync_command = 'mistral-db-manage --config-file=/etc/mistral/mistral.conf upgrade head'

View File

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