summaryrefslogtreecommitdiff
path: root/pkg/adapter/client.go
diff options
context:
space:
mode:
authorAnders F Björklund <anders.f.bjorklund@gmail.com>2019-10-01 19:38:58 +0200
committerAnders F Björklund <anders.f.bjorklund@gmail.com>2019-10-01 19:46:48 +0200
commit32b2856e7a6d5a5e6c51b58a223be00828258981 (patch)
treee807a354cfc77dc09240adbc5e9a8b322a3da386 /pkg/adapter/client.go
parent7a5696316a03df5dddded9c3afa8bf26acd74678 (diff)
downloadpodman-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.go')
-rw-r--r--pkg/adapter/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/adapter/client.go b/pkg/adapter/client.go
index 1805c758d..da4670892 100644
--- a/pkg/adapter/client.go
+++ b/pkg/adapter/client.go
@@ -35,7 +35,7 @@ func (r RemoteRuntime) RemoteEndpoint() (remoteEndpoint *Endpoint, err error) {
if len(r.cmd.RemoteUserName) < 1 {
return nil, errors.New("you must provide a username when providing a remote host name")
}
- rc := remoteclientconfig.RemoteConnection{r.cmd.RemoteHost, r.cmd.RemoteUserName, false, r.cmd.Port}
+ rc := remoteclientconfig.RemoteConnection{r.cmd.RemoteHost, r.cmd.RemoteUserName, false, r.cmd.Port, r.cmd.IdentityFile, r.cmd.IgnoreHosts}
remoteEndpoint, err = newBridgeConnection("", &rc, r.cmd.LogLevel)
// if the user has a config file with connections in it
} else if len(remoteConfigConnections.Connections) > 0 {