[vmware] Replaced pip with native package manager
Change-Id: Id1b04168eb940fa61c4ba83cfc8ecdcb1cf8f2b8
This commit is contained in:
@@ -74,8 +74,7 @@ class nova::compute::vmware(
|
||||
}
|
||||
}
|
||||
|
||||
package { 'suds':
|
||||
ensure => present,
|
||||
provider => pip
|
||||
package { 'python-suds':
|
||||
ensure => present
|
||||
}
|
||||
}
|
||||
|
@@ -30,10 +30,10 @@ describe 'nova::compute::vmware' do
|
||||
should_not contain_nova_config('VMWARE/wsdl_location')
|
||||
end
|
||||
|
||||
it 'installs vmwareapi with pip' do
|
||||
should contain_package('suds').with(
|
||||
:ensure => 'present',
|
||||
:provider => 'pip')
|
||||
it 'installs suds python package' do
|
||||
should contain_package('python-suds').with(
|
||||
:ensure => 'present'
|
||||
)
|
||||
end
|
||||
|
||||
context 'with optional parameters' do
|
||||
|
Reference in New Issue
Block a user