diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-02-03 10:05:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-03 10:05:22 -0500 |
commit | 722ccaee38663a0087c1c217319235e0d1460b1e (patch) | |
tree | 8a51712634720593adbb095094e30d0a6b3813c6 /cmd | |
parent | 08930b24b98b31ea4f1ce882a45166b469b28ced (diff) | |
parent | 56d95172f185e1b480453e66184fd55b897b0a36 (diff) | |
download | podman-722ccaee38663a0087c1c217319235e0d1460b1e.tar.gz podman-722ccaee38663a0087c1c217319235e0d1460b1e.tar.bz2 podman-722ccaee38663a0087c1c217319235e0d1460b1e.zip |
Merge pull request #13047 from cdoern/scpSyntax
podman image scp syntax correction
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/images/scp.go | 11 | ||||
-rw-r--r-- | cmd/podman/images/scp_utils.go | 3 |
2 files changed, 13 insertions, 1 deletions
diff --git a/cmd/podman/images/scp.go b/cmd/podman/images/scp.go index 81dcda123..d07a5d99d 100644 --- a/cmd/podman/images/scp.go +++ b/cmd/podman/images/scp.go @@ -146,6 +146,17 @@ func scp(cmd *cobra.Command, args []string) (finalErr error) { return err } + allLocal := true // if we are all localhost, do not validate connections but if we are using one localhost and one non we need to use sshd + for _, val := range cliConnections { + if !strings.Contains(val, "@localhost::") { + allLocal = false + break + } + } + if allLocal { + cliConnections = []string{} + } + var serv map[string]config.Destination serv, err = GetServiceInformation(cliConnections, cfg) if err != nil { diff --git a/cmd/podman/images/scp_utils.go b/cmd/podman/images/scp_utils.go index c488616c9..a85687a42 100644 --- a/cmd/podman/images/scp_utils.go +++ b/cmd/podman/images/scp_utils.go @@ -17,12 +17,13 @@ func parseImageSCPArg(arg string) (*entities.ImageScpOptions, []string, error) { cliConnections := []string{} switch { - case strings.Contains(arg, "@localhost"): // image transfer between users + case strings.Contains(arg, "@localhost::"): // image transfer between users location.User = strings.Split(arg, "@")[0] location, err = validateImagePortion(location, arg) if err != nil { return nil, nil, err } + cliConnections = append(cliConnections, arg) case strings.Contains(arg, "::"): location, err = validateImagePortion(location, arg) if err != nil { |