summaryrefslogtreecommitdiff
path: root/cmd/podman/runlabel.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-07-09 15:33:16 +0200
committerGitHub <noreply@github.com>2019-07-09 15:33:16 +0200
commiteb4b7ed12bd831ac14cc6a6eea542d61900cb159 (patch)
treec04f7b650786cea74cb72de19927e8016e01598d /cmd/podman/runlabel.go
parentcea0e93a658f10cc46b56cb9b00ac8b824bc8b02 (diff)
parent714d36b0887158c7a951813b8d04739b354dd1c0 (diff)
downloadpodman-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/runlabel.go')
-rw-r--r--cmd/podman/runlabel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/runlabel.go b/cmd/podman/runlabel.go
index be5d29139..fdbf7fa8f 100644
--- a/cmd/podman/runlabel.go
+++ b/cmd/podman/runlabel.go
@@ -61,7 +61,7 @@ func init() {
flags.BoolVarP(&runlabelCommand.Quiet, "quiet", "q", false, "Suppress output information when installing images")
// Disabled flags for the remote client
if !remote {
- flags.StringVar(&runlabelCommand.Authfile, "authfile", getAuthFile(""), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
+ flags.StringVar(&runlabelCommand.Authfile, "authfile", shared.GetAuthFile(""), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
flags.StringVar(&runlabelCommand.CertDir, "cert-dir", "", "`Pathname` of a directory containing TLS certificates and keys")
flags.StringVar(&runlabelCommand.SignaturePolicy, "signature-policy", "", "`Pathname` of signature policy file (not usually used)")
flags.BoolVar(&runlabelCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")