summaryrefslogtreecommitdiff
path: root/cmd/podman/run.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-11-08 22:06:34 +0100
committerGitHub <noreply@github.com>2019-11-08 22:06:34 +0100
commitf456ce90f966f2eefdfc27ca83541ceacc4a298d (patch)
tree24f39eb6404de474cb2e2d41acc2a3ace8410ce5 /cmd/podman/run.go
parent651d6ebe5274a892ce64819bb007080895f98321 (diff)
parentd7c0f968ca60994306c8c76cd8e4e0a677fe9ada (diff)
downloadpodman-f456ce90f966f2eefdfc27ca83541ceacc4a298d.tar.gz
podman-f456ce90f966f2eefdfc27ca83541ceacc4a298d.tar.bz2
podman-f456ce90f966f2eefdfc27ca83541ceacc4a298d.zip
Merge pull request #4337 from QiWang19/check_auth_path
fix bug check nonexist authfile
Diffstat (limited to 'cmd/podman/run.go')
-rw-r--r--cmd/podman/run.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/podman/run.go b/cmd/podman/run.go
index 7aa4cb3c4..a6468f225 100644
--- a/cmd/podman/run.go
+++ b/cmd/podman/run.go
@@ -1,6 +1,8 @@
package main
import (
+ "os"
+
"github.com/containers/libpod/cmd/podman/cliconfig"
"github.com/containers/libpod/pkg/adapter"
"github.com/opentracing/opentracing-go"
@@ -45,6 +47,11 @@ func runCmd(c *cliconfig.RunValues) error {
span, _ := opentracing.StartSpanFromContext(Ctx, "runCmd")
defer span.Finish()
}
+ if c.String("authfile") != "" {
+ if _, err := os.Stat(c.String("authfile")); err != nil {
+ return errors.Wrapf(err, "error checking authfile path %s", c.String("authfile"))
+ }
+ }
if err := createInit(&c.PodmanCommand); err != nil {
return err
}