summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2017-01-09 15:42:11 -0800
committerGitHub <noreply@github.com>2017-01-09 15:42:11 -0800
commitb49efdb1953e7426afd0230f2611ceb8b77fe2ea (patch)
tree89f06e6d5e8c8d7c3dd2b51ac34cb87f9d96ab0e
parentad4df613257438c84ca6ed1e3c37381a0464dace (diff)
parentbdc3a577b99ed34ae227a04b6b2e4004fd1b885f (diff)
downloadchef-b49efdb1953e7426afd0230f2611ceb8b77fe2ea.tar.gz
Merge pull request #5713 from chef/lcg/fix-master2
kitchen-tests: remove deprecated openssh options
-rw-r--r--kitchen-tests/cookbooks/base/attributes/default.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/kitchen-tests/cookbooks/base/attributes/default.rb b/kitchen-tests/cookbooks/base/attributes/default.rb
index ef273c969c..75e57cb27b 100644
--- a/kitchen-tests/cookbooks/base/attributes/default.rb
+++ b/kitchen-tests/cookbooks/base/attributes/default.rb
@@ -13,7 +13,6 @@ default["ubuntu"]["components"] = "main restricted universe multiverse"
#
# turn off old protocols client-side
-default["openssh"]["client"]["rsa_authentication"] = "no"
default["openssh"]["client"]["host_based_authentication"] = "no"
# allow typical ssh v2 rsa/dsa/ecdsa key auth client-side
default["openssh"]["client"]["pubkey_authentication"] = "yes"
@@ -34,8 +33,6 @@ default["openssh"]["server"]["use_dns"] = "no"
default["openssh"]["server"]["syslog_facility"] = "AUTH"
# only allow access via ssh pubkeys, all other mechanisms including passwords are turned off for all users
default["openssh"]["server"]["pubkey_authentication"] = "yes"
-default["openssh"]["server"]["rhosts_rsa_authentication"] = "no"
-default["openssh"]["server"]["rsa_authentication"] = "no"
default["openssh"]["server"]["password_authentication"] = "no"
default["openssh"]["server"]["host_based_authentication"] = "no"
default["openssh"]["server"]["gssapi_authentication"] = "no"