mirror of https://github.com/docker/docs.git
Log SSH client used
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
This commit is contained in:
parent
80c9f5bbd9
commit
e143ef730c
|
@ -76,16 +76,22 @@ func NewClient(user string, host string, port int, auth *Auth) (Client, error) {
|
||||||
sshBinaryPath, err := exec.LookPath("ssh")
|
sshBinaryPath, err := exec.LookPath("ssh")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
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)
|
client, err := NewNativeClient(user, host, port, auth)
|
||||||
|
log.Debug(client)
|
||||||
|
return client, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if defaultClientType == Native {
|
if defaultClientType == Native {
|
||||||
log.Debug("Using SSH client type: native")
|
log.Debug("Using SSH client type: native")
|
||||||
return NewNativeClient(user, host, port, auth)
|
client, err := NewNativeClient(user, host, port, auth)
|
||||||
|
log.Debug(client)
|
||||||
|
return client, err
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Debug("Using SSH client type: external")
|
log.Debug("Using SSH client type: external")
|
||||||
return NewExternalClient(sshBinaryPath, user, host, port, auth)
|
client, err := NewExternalClient(sshBinaryPath, user, host, port, auth)
|
||||||
|
log.Debug(client)
|
||||||
|
return client, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewNativeClient(user, host string, port int, auth *Auth) (Client, error) {
|
func NewNativeClient(user, host string, port int, auth *Auth) (Client, error) {
|
||||||
|
|
Loading…
Reference in New Issue