Verify tcp port in Ubuntu/Debian

... in addition to CentOS, because mistral service is now deployed in
all operating systems.

Change-Id: I25dc10d0050d7e69f34857991f11530717f426ce
This commit is contained in:
Takashi Kajinami 2023-03-14 01:04:11 +09:00
parent 2ba57c62b9
commit 6aeb6d3a3b
1 changed files with 2 additions and 6 deletions

View File

@ -16,18 +16,14 @@ describe 'basic mistral' do
include openstack_integration::mistral
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
if os[:family].casecmp('RedHat') == 0
describe port(8989) do
it { is_expected.to be_listening }
end
describe port(8989) do
it { is_expected.to be_listening }
end
end
end