glance::client was not installing the correct package
The actually glance executable is not installed as a part of the python-glance package, it is installed in the python-glanceclient pakcage. Going through the RDO packages, I do not even see a package called python-glance. Change-Id: I35c71fc5da595a695b10cb2ecc5ad27f5131bac8
This commit is contained in:
parent
ebb78d8d01
commit
53d2b7eeb6
@ -10,7 +10,7 @@ class glance::client (
|
||||
|
||||
include glance::params
|
||||
|
||||
package { 'python-glance':
|
||||
package { 'python-glanceclient':
|
||||
name => $::glance::params::client_package_name,
|
||||
ensure => $ensure,
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
# should be considered to be constant
|
||||
class glance::params {
|
||||
|
||||
$client_package_name = 'python-glance'
|
||||
$client_package_name = 'python-glanceclient'
|
||||
|
||||
case $::osfamily {
|
||||
'RedHat': {
|
||||
|
@ -4,8 +4,8 @@ describe 'glance::client' do
|
||||
|
||||
shared_examples 'glance client' do
|
||||
it { should include_class('glance::params') }
|
||||
it { should contain_package('python-glance').with(
|
||||
:name => 'python-glance',
|
||||
it { should contain_package('python-glanceclient').with(
|
||||
:name => 'python-glanceclient',
|
||||
:ensure => 'present'
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user