diff options
author | Brent Baude <bbaude@redhat.com> | 2020-08-11 13:44:29 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-08-12 09:19:52 -0500 |
commit | 6ff42395d08217d86055456a9130fef8f78d34e2 (patch) | |
tree | 907e60d391d4379b38f1a5f5909aaf9c0c913fa6 /cmd/podman/root.go | |
parent | 8eaacec150df782c291e9c6046bb0db010dd2f08 (diff) | |
download | podman-6ff42395d08217d86055456a9130fef8f78d34e2.tar.gz podman-6ff42395d08217d86055456a9130fef8f78d34e2.tar.bz2 podman-6ff42395d08217d86055456a9130fef8f78d34e2.zip |
podman-remote fixes for msi and client
correct small typo that sets the path on windows via the msi xml.
in the remote client, prompt for SSH password when no identity or alternate means of authentication are provided.
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/root.go')
-rw-r--r-- | cmd/podman/root.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/root.go b/cmd/podman/root.go index 2aa7267c2..dd9c75ece 100644 --- a/cmd/podman/root.go +++ b/cmd/podman/root.go @@ -290,6 +290,7 @@ func resolveDestination() (string, string) { cfg, err := config.ReadCustomConfig() if err != nil { + logrus.Warning(errors.Wrap(err, "unable to read local containers.conf")) return registry.DefaultAPIAddress(), "" } |