From af149d13f709665cecb4ac7155e31f44044e90cc Mon Sep 17 00:00:00 2001 From: Nathan LeClaire Date: Tue, 16 Jun 2015 10:51:25 -0700 Subject: [PATCH] Fix defaulting to native SSH Signed-off-by: Nathan LeClaire --- ssh/client.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ssh/client.go b/ssh/client.go index f0db6f169a..c812ea4f51 100644 --- a/ssh/client.go +++ b/ssh/client.go @@ -73,10 +73,7 @@ func SetDefaultClient(clientType SSHClientType) { func NewClient(user string, host string, port int, auth *Auth) (Client, error) { sshBinaryPath, err := exec.LookPath("ssh") if err != nil { - if defaultClientType == External { - log.Fatal("Requested shellout SSH client type but no ssh binary available") - } - log.Debug("ssh binary not found, using native Go implementation") + log.Debug("SSH binary not found, using native Go implementation") return NewNativeClient(user, host, port, auth) }