Merge pull request #2711 from dgageot/ssh-batch-mode

We must never ask for a password interactively
This commit is contained in:
Nathan LeClaire 2015-12-29 11:21:42 -08:00
commit 1b76a4467c
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ const (
var (
baseSSHArgs = []string{
"-o", "BatchMode=yes",
"-o", "PasswordAuthentication=no",
"-o", "StrictHostKeyChecking=no",
"-o", "UserKnownHostsFile=/dev/null",