diff options
author | Anders F Björklund <anders.f.bjorklund@gmail.com> | 2019-10-01 19:38:58 +0200 |
---|---|---|
committer | Anders F Björklund <anders.f.bjorklund@gmail.com> | 2019-10-01 19:46:48 +0200 |
commit | 32b2856e7a6d5a5e6c51b58a223be00828258981 (patch) | |
tree | e807a354cfc77dc09240adbc5e9a8b322a3da386 /pkg/adapter/client_unix.go | |
parent | 7a5696316a03df5dddded9c3afa8bf26acd74678 (diff) | |
download | podman-32b2856e7a6d5a5e6c51b58a223be00828258981.tar.gz podman-32b2856e7a6d5a5e6c51b58a223be00828258981.tar.bz2 podman-32b2856e7a6d5a5e6c51b58a223be00828258981.zip |
Allow changing IdentityFile and to IgnoreHosts
Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
Diffstat (limited to 'pkg/adapter/client_unix.go')
-rw-r--r-- | pkg/adapter/client_unix.go | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/pkg/adapter/client_unix.go b/pkg/adapter/client_unix.go index a7bc7c1c0..2bf71295f 100644 --- a/pkg/adapter/client_unix.go +++ b/pkg/adapter/client_unix.go @@ -14,7 +14,14 @@ func formatDefaultBridge(remoteConn *remoteclientconfig.RemoteConnection, logLev if port == 0 { port = 22 } + options := "" + if remoteConn.IdentityFile != "" { + options += " -i " + remoteConn.IdentityFile + } + if remoteConn.IgnoreHosts { + options += " -q -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" + } return fmt.Sprintf( - `ssh -p %d -T %s@%s -- /usr/bin/varlink -A \'/usr/bin/podman --log-level=%s varlink \\\$VARLINK_ADDRESS\' bridge`, - port, remoteConn.Username, remoteConn.Destination, logLevel) + `ssh -p %d -T%s %s@%s -- /usr/bin/varlink -A \'/usr/bin/podman --log-level=%s varlink \\\$VARLINK_ADDRESS\' bridge`, + port, options, remoteConn.Username, remoteConn.Destination, logLevel) } |