diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-07-09 15:33:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 15:33:16 +0200 |
commit | eb4b7ed12bd831ac14cc6a6eea542d61900cb159 (patch) | |
tree | c04f7b650786cea74cb72de19927e8016e01598d /cmd/podman/logout.go | |
parent | cea0e93a658f10cc46b56cb9b00ac8b824bc8b02 (diff) | |
parent | 714d36b0887158c7a951813b8d04739b354dd1c0 (diff) | |
download | podman-eb4b7ed12bd831ac14cc6a6eea542d61900cb159.tar.gz podman-eb4b7ed12bd831ac14cc6a6eea542d61900cb159.tar.bz2 podman-eb4b7ed12bd831ac14cc6a6eea542d61900cb159.zip |
Merge pull request #3528 from giuseppe/fix-auth-location
podman: create and run honors auth file location
Diffstat (limited to 'cmd/podman/logout.go')
-rw-r--r-- | cmd/podman/logout.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/logout.go b/cmd/podman/logout.go index 5df838bba..66dc82363 100644 --- a/cmd/podman/logout.go +++ b/cmd/podman/logout.go @@ -6,6 +6,7 @@ import ( "github.com/containers/image/docker" "github.com/containers/image/pkg/docker/config" "github.com/containers/libpod/cmd/podman/cliconfig" + "github.com/containers/libpod/cmd/podman/shared" "github.com/containers/libpod/libpod/image" "github.com/pkg/errors" "github.com/spf13/cobra" @@ -39,7 +40,7 @@ func init() { logoutCommand.SetUsageTemplate(UsageTemplate()) flags := logoutCommand.Flags() flags.BoolVarP(&logoutCommand.All, "all", "a", false, "Remove the cached credentials for all registries in the auth file") - flags.StringVar(&logoutCommand.Authfile, "authfile", getAuthFile(""), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override") + flags.StringVar(&logoutCommand.Authfile, "authfile", shared.GetAuthFile(""), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override") markFlagHiddenForRemoteClient("authfile", flags) } |