
Include libguestfs-tools package as part of nova utilities class and update spec tests. This package provides library and tools for managing virtual disks such as guestmount which are useful for nova-compute. Change-Id: Ie63b1417b5d9f584a23baa52f26efc3ff71b8785
20 lines
581 B
Ruby
20 lines
581 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'nova::utilities' do
|
|
|
|
describe 'on debian platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian' }
|
|
end
|
|
|
|
it 'installes utilities' do
|
|
should contain_package('unzip').with_ensure('present')
|
|
should contain_package('screen').with_ensure('present')
|
|
should contain_package('parted').with_ensure('present')
|
|
should contain_package('curl').with_ensure('present')
|
|
should contain_package('euca2ools').with_ensure('present')
|
|
should contain_package('libguestfs-tools').with_ensure('present')
|
|
end
|
|
end
|
|
end
|