[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':
|
package { 'python-suds':
|
||||||
ensure => present,
|
ensure => present
|
||||||
provider => pip
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -30,10 +30,10 @@ describe 'nova::compute::vmware' do
|
|||||||
should_not contain_nova_config('VMWARE/wsdl_location')
|
should_not contain_nova_config('VMWARE/wsdl_location')
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'installs vmwareapi with pip' do
|
it 'installs suds python package' do
|
||||||
should contain_package('suds').with(
|
should contain_package('python-suds').with(
|
||||||
:ensure => 'present',
|
:ensure => 'present'
|
||||||
:provider => 'pip')
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with optional parameters' do
|
context 'with optional parameters' do
|
||||||
@@ -49,4 +49,4 @@ describe 'nova::compute::vmware' do
|
|||||||
should contain_nova_config('VMWARE/wsdl_location').with_value(params[:wsdl_location])
|
should contain_nova_config('VMWARE/wsdl_location').with_value(params[:wsdl_location])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user