Ubuntu: Check TCP port in acceptance tests

Now we deploy sahara in both CentOS and Ubuntu thus we can validate
the tcp port in Ubuntu as well.

Change-Id: Ib771f21664059bc11bd1503cff7f55fb9ce42d17
This commit is contained in:
Takashi Kajinami 2023-03-22 16:34:56 +09:00
parent bced4f3e03
commit 139519db55
1 changed files with 2 additions and 5 deletions

View File

@ -24,11 +24,8 @@ describe 'basic sahara' do
apply_manifest(pp, :catch_changes => true)
end
if os[:family].casecmp('RedHat') == 0
describe port(8386) do
it { is_expected.to be_listening.with('tcp') }
end
describe port(8386) do
it { is_expected.to be_listening.with('tcp') }
end
end
end