From b62afc85f7ebe08fcd36ba3d3c5cf98193c9271e Mon Sep 17 00:00:00 2001 From: Bilal Amarni Date: Sun, 17 Apr 2016 09:34:48 +0200 Subject: [PATCH] SSH - don't enable BatchMode When a passphrase protected key is not yet in ssh-agent, it gives a chance to the user to fill a prompt instead of silently failing. Signed-off-by: Bilal Amarni --- libmachine/ssh/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/libmachine/ssh/client.go b/libmachine/ssh/client.go index ad880fb292..b356247890 100644 --- a/libmachine/ssh/client.go +++ b/libmachine/ssh/client.go @@ -65,7 +65,6 @@ const ( var ( baseSSHArgs = []string{ "-F", "/dev/null", - "-o", "BatchMode=yes", "-o", "PasswordAuthentication=no", "-o", "StrictHostKeyChecking=no", "-o", "UserKnownHostsFile=/dev/null",