From 5d080a9d2877ec15d426269d733c0d3c57fe3079 Mon Sep 17 00:00:00 2001 From: Clinton Wolfe Date: Sun, 16 May 2021 17:37:39 -0400 Subject: [PATCH] Remove outdated SSHD example Signed-off-by: Clinton Wolfe --- README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/README.md b/README.md index db4e6b3db..be5259b2f 100644 --- a/README.md +++ b/README.md @@ -211,14 +211,6 @@ describe port(443) do end ``` -* Use approved strong ciphers - This test ensures that only enterprise-compliant ciphers are used for SSH servers. - -```ruby -describe sshd_config do -   its('Ciphers') { should eq('chacha20-poly1305@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr') } -end -``` - * Test your `kitchen.yml` file to verify that only Vagrant is configured as the driver. The %w() formatting will pass rubocop linting and allow you to access nested mappings.