diff options
author | Tim Smith <tsmith@chef.io> | 2017-12-14 22:53:32 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2017-12-14 22:53:32 -0800 |
commit | c3a071cfe42e13866adc6fdfb19a977e9f1a0b4d (patch) | |
tree | 743317cfc172042acbf181b5d2fae5b4339b0d33 /kitchen-tests/cookbooks | |
parent | 61a308ece615ecd2d45062a3d314474f50565e66 (diff) | |
download | chef-c3a071cfe42e13866adc6fdfb19a977e9f1a0b4d.tar.gz |
Remove the ciphers that openSSH 7.6 doesn't supportfedora_travis
fedora-latest just went to Fedora 27 and blowfish / cast have been removed with the inclusion of openSSH 7.6. The cookbook is fine, but we set this here.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'kitchen-tests/cookbooks')
-rw-r--r-- | kitchen-tests/cookbooks/base/attributes/default.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kitchen-tests/cookbooks/base/attributes/default.rb b/kitchen-tests/cookbooks/base/attributes/default.rb index 84cada26ae..c952f0887e 100644 --- a/kitchen-tests/cookbooks/base/attributes/default.rb +++ b/kitchen-tests/cookbooks/base/attributes/default.rb @@ -27,7 +27,7 @@ default["openssh"]["client"]["strict_host_key_checking"] = "no" default["openssh"]["client"]["protocol"] = "2" # it is mostly important that the aes*-ctr ciphers appear first in this list, the cbc ciphers are for compatibility -default["openssh"]["server"]["ciphers"] = "aes256-ctr,aes192-ctr,aes128-ctr,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,3des-cbc,cast128-cbc" +default["openssh"]["server"]["ciphers"] = "aes256-ctr,aes192-ctr,aes128-ctr,aes256-cbc,aes192-cbc,aes128-cbc,3des-cbc" # DNS causes long timeouts when connecting clients have busted DNS default["openssh"]["server"]["use_dns"] = "no" default["openssh"]["server"]["syslog_facility"] = "AUTH" |