Merge "Update to include new aodhclient"

This commit is contained in:
Jenkins 2016-07-06 18:14:20 +00:00 committed by Gerrit Code Review
commit 365c91486c
3 changed files with 4 additions and 5 deletions

View File

@ -11,8 +11,7 @@ class aodh::client (
include ::aodh::params
# there is no aodhclient yet
package { 'python-ceilometerclient':
package { 'python-aodhclient':
ensure => $ensure,
name => $::aodh::params::client_package_name,
tag => 'openstack',

View File

@ -2,7 +2,7 @@
#
class aodh::params {
$client_package_name = 'python-ceilometerclient'
$client_package_name = 'python-aodhclient'
case $::osfamily {
'RedHat': {

View File

@ -7,9 +7,9 @@ describe 'aodh::client' do
it { is_expected.to contain_class('aodh::params') }
it 'installs aodh client package' do
is_expected.to contain_package('python-ceilometerclient').with(
is_expected.to contain_package('python-aodhclient').with(
:ensure => 'present',
:name => 'python-ceilometerclient',
:name => 'python-aodhclient',
:tag => 'openstack',
)
end