Update to include new aodhclient

Change-Id: Ia5add80b74c6a708634eb88c7eec79ef9a10e0fb
This commit is contained in:
Pradeep Kilambi 2016-05-02 11:16:57 -04:00
parent b04fb50639
commit 97f89a9163
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