Skip to content

Commit

Permalink
Workaround inspec tcp6 protocol detection bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Firefishy committed Aug 7, 2024
1 parent 9eb42fb commit 1f6f362
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/integration/openssh/inspec/openssh_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@

describe port(22) do
it { should be_listening }
its("protocols") { should cmp %w[tcp tcp6] }
its("protocols") { should include "tcp" }
# https://github.com/inspec/inspec/issues/3209
# its("protocols") { should include "tcp6" }
end

0 comments on commit 1f6f362

Please sign in to comment.