Merge "Use new openstackclient tag"

This commit is contained in:
Zuul 2023-11-20 18:40:56 +00:00 committed by Gerrit Code Review
commit 94a5e732f0
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ class aodh::client (
package { 'python-aodhclient':
ensure => $ensure,
name => $::aodh::params::client_package_name,
tag => 'openstack',
tag => ['openstack', 'openstackclient'],
}
include openstacklib::openstackclient

View File

@ -11,7 +11,7 @@ describe 'aodh::client' do
is_expected.to contain_package('python-aodhclient').with(
:ensure => 'present',
:name => 'python3-aodhclient',
:tag => 'openstack',
:tag => ['openstack', 'openstackclient'],
)
end