1
mirror of https://github.com/rclone/rclone synced 2024-07-27 16:38:21 +02:00

sftp: allow custom ssh client config

This commit is contained in:
Alexandru Bumbacea 2019-02-19 17:40:15 +01:00 committed by Nick Craig-Wood
parent 2114fd8f26
commit 4fddec113c

View File

@ -427,6 +427,12 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
sshConfig.Auth = append(sshConfig.Auth, ssh.Password(clearpass))
}
return NewFsWithConnection(name, root, opt, sshConfig)
}
// NewFsWithConnection creates a new Fs object from the name and root and a ssh.ClientConfig. It connects to
// the host specified in the ssh.ClientConfig
func NewFsWithConnection(name string, root string, opt *Options, sshConfig *ssh.ClientConfig) (fs.Fs, error) {
f := &Fs{
name: name,
root: root,