diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-18 21:12:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-18 21:12:04 +0200 |
commit | 8133aa1ee88cea2c89d38c1c56974c8889ef0933 (patch) | |
tree | 95e2cbc29508cd9e40d5bbee200f83fbc4ad1747 /cmd/podman/remoteclientconfig/config.go | |
parent | 2c51d6f800a1ed472da3b88b4f987ab73953c8d0 (diff) | |
parent | 0d9b952aeab95c59b28bcea42f719d06363b45b5 (diff) | |
download | podman-8133aa1ee88cea2c89d38c1c56974c8889ef0933.tar.gz podman-8133aa1ee88cea2c89d38c1c56974c8889ef0933.tar.bz2 podman-8133aa1ee88cea2c89d38c1c56974c8889ef0933.zip |
Merge pull request #4041 from baude/remoteconfigport
support non-standard ssh port for remote-client
Diffstat (limited to 'cmd/podman/remoteclientconfig/config.go')
-rw-r--r-- | cmd/podman/remoteclientconfig/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/remoteclientconfig/config.go b/cmd/podman/remoteclientconfig/config.go index 01f293ec3..13880a868 100644 --- a/cmd/podman/remoteclientconfig/config.go +++ b/cmd/podman/remoteclientconfig/config.go @@ -12,6 +12,7 @@ type RemoteConnection struct { Destination string `toml:"destination"` Username string `toml:"username"` IsDefault bool `toml:"default"` + Port int `toml:"port"` } // GetConfigFilePath is a simple helper to export the configuration file's |