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 Sep 9, 2024
1 parent 1fb78e1 commit 9bfe970
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 9bfe970

Please sign in to comment.