X Tutup
Skip to content

Commit fcfbd11

Browse files
authored
Merge pull request docker-archive-public#4174 from andrestc/hostkeycallback
ssh: Adds HostKeyCallback
2 parents ce676b9 + b63e1e8 commit fcfbd11

40 files changed

+5662
-1036
lines changed

Godeps/Godeps.json

Lines changed: 11 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libmachine/ssh/client.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,9 @@ func NewNativeConfig(user string, auth *Auth) (ssh.ClientConfig, error) {
151151
}
152152

153153
return ssh.ClientConfig{
154-
User: user,
155-
Auth: authMethods,
154+
User: user,
155+
Auth: authMethods,
156+
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
156157
}, nil
157158
}
158159

vendor/golang.org/x/crypto/AUTHORS

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/curve25519/const_amd64.h

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/curve25519/const_amd64.s

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/curve25519/cswap_amd64.s

Lines changed: 54 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/curve25519/curve25519.go

Lines changed: 8 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/curve25519/doc.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/curve25519/freeze_amd64.s

Lines changed: 5 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
X Tutup