summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarkis Varozian <svarozian@gmail.com>2017-11-13 10:10:13 -0800
committerTim Smith <tsmith@chef.io>2018-02-21 10:05:11 -0800
commit9c354415e6fe942b48d0b23eaff8b67c664397e0 (patch)
treee74725ed25485b2116283886aad24533d9adf4f3
parent53080b716e7a05fb8cbd3eafc37bd5196b35689c (diff)
downloadchef-9c354415e6fe942b48d0b23eaff8b67c664397e0.tar.gz
change to boolean in bootstrap as wellknife_ssh_exit
Signed-off-by: Sarkis Varozian <svarozian@gmail.com>
-rw-r--r--lib/chef/knife/bootstrap.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/bootstrap.rb b/lib/chef/knife/bootstrap.rb
index f9dca7896a..9decacce13 100644
--- a/lib/chef/knife/bootstrap.rb
+++ b/lib/chef/knife/bootstrap.rb
@@ -448,7 +448,7 @@ class Chef
ssh.config[:ssh_identity_file] = config[:ssh_identity_file] || config[:identity_file]
ssh.config[:manual] = true
ssh.config[:host_key_verify] = config[:host_key_verify]
- ssh.config[:on_error] = :raise
+ ssh.config[:on_error] = true
ssh
end