sftp: specify HostKeyCallback in ClientConfig

This commit is contained in:
Igor Kharin
2017-05-15 21:02:05 +01:00
committed by Nick Craig-Wood
parent 77cd93ef89
commit bd2cdeeeab
+4 -3
View File
@@ -90,9 +90,10 @@ func NewFs(name, root string) (fs.Fs, error) {
port = "22"
}
config := &ssh.ClientConfig{
User: user,
Auth: []ssh.AuthMethod{},
Timeout: fs.Config.ConnectTimeout,
User: user,
Auth: []ssh.AuthMethod{},
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
Timeout: fs.Config.ConnectTimeout,
}
if pass == "" {
authSock := os.Getenv("SSH_AUTH_SOCK")