fuel-library/tests/noop/spec/hosts/ssl/ssl_add_trust_chain_spec.rb
Igor Gajsin 8bdc2aca9c remove vmware
VMware not supported since Fuel 10. So this commit removes
vmware-related manifests.

Implements: blueprint remove-vmware
Change-Id: If5f0c837fe843f9cfd30648fe6e115267467982b
2017-02-15 10:47:33 +00:00

24 lines
488 B
Ruby

# ROLE: virt
# ROLE: primary-mongo
# ROLE: primary-controller
# ROLE: mongo
# ROLE: controller
# ROLE: compute
# ROLE: cinder
# ROLE: ceph-osd
require 'spec_helper'
require 'shared-examples'
manifest = 'ssl/ssl_add_trust_chain.pp'
describe manifest do
shared_examples 'catalog' do
it 'should add certificates to trust chain' do
should contain_exec('add_trust').with(
'command' => 'update-ca-certificates',
)
end
end
test_ubuntu_and_centos manifest
end