Merge pull request #1690 from jonmort/disable-ssh-multiplex

Disable ssh multiplex explicitly
This commit is contained in:
Nathan LeClaire 2015-08-18 11:38:17 +09:00
commit 9661bf89e1
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,8 @@ var (
"-o", "LogLevel=quiet", // suppress "Warning: Permanently added '[localhost]:2022' (ECDSA) to the list of known hosts."
"-o", "ConnectionAttempts=3", // retry 3 times if SSH connection fails
"-o", "ConnectTimeout=10", // timeout after 10 seconds
"-o", "ControlMaster=no", // disable ssh multiplexing
"-o", "ControlPath=no",
}
defaultClientType SSHClientType = External
)