summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/chef/knife/bootstrap.rb20
1 files changed, 9 insertions, 11 deletions
diff --git a/lib/chef/knife/bootstrap.rb b/lib/chef/knife/bootstrap.rb
index 4395fded71..612e119760 100644
--- a/lib/chef/knife/bootstrap.rb
+++ b/lib/chef/knife/bootstrap.rb
@@ -670,17 +670,15 @@ class Chef
end
def do_connect(conn_options)
- begin
- @connection = TrainConnector.new(host_descriptor, connection_protocol, conn_options)
- connection.connect!
- rescue Train::UserError => e
- if !conn_options.key?(:pty) && e.message =~ /Sudo requires a TTY/
- ui.warn("#{e.message} - trying with pty request")
- conn_options[:pty] = true # ensure we can talk to systems with requiretty set true in sshd config
- retry
- else
- raise
- end
+ @connection = TrainConnector.new(host_descriptor, connection_protocol, conn_options)
+ connection.connect!
+ rescue Train::UserError => e
+ if !conn_options.key?(:pty) && e.message =~ /Sudo requires a TTY/
+ ui.warn("#{e.message} - trying with pty request")
+ conn_options[:pty] = true # ensure we can talk to systems with requiretty set true in sshd config
+ retry
+ else
+ raise
end
end