summaryrefslogtreecommitdiff
path: root/cmd/podman/errors.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-02-24 07:36:27 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2019-02-25 12:49:27 -0500
commitfe4c0c37807f250c8f222bbe7634df13a6da8756 (patch)
tree21546b987d872879a372e458798804f2548c3b2c /cmd/podman/errors.go
parent73cfb9f127b0991c3faac9ff1fafed8d65355e4b (diff)
downloadpodman-fe4c0c37807f250c8f222bbe7634df13a6da8756.tar.gz
podman-fe4c0c37807f250c8f222bbe7634df13a6da8756.tar.bz2
podman-fe4c0c37807f250c8f222bbe7634df13a6da8756.zip
Change exit code to 1 on podman rmi nosuch image
Make it easy for scripts to determine if an image removal failure. If only errors were no such image exit with 1 versus 125. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/errors.go')
-rw-r--r--cmd/podman/errors.go20
1 files changed, 1 insertions, 19 deletions
diff --git a/cmd/podman/errors.go b/cmd/podman/errors.go
index 192f97049..2572b8779 100644
--- a/cmd/podman/errors.go
+++ b/cmd/podman/errors.go
@@ -6,8 +6,6 @@ import (
"os/exec"
"syscall"
- "github.com/containers/libpod/cmd/podman/varlink"
- "github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
@@ -20,22 +18,6 @@ func outputError(err error) {
exitCode = status.ExitStatus()
}
}
- var ne error
- switch e := err.(type) {
- // For some reason golang wont let me list them with commas so listing them all.
- case *iopodman.ImageNotFound:
- ne = errors.New(e.Reason)
- case *iopodman.ContainerNotFound:
- ne = errors.New(e.Reason)
- case *iopodman.PodNotFound:
- ne = errors.New(e.Reason)
- case *iopodman.VolumeNotFound:
- ne = errors.New(e.Reason)
- case *iopodman.ErrorOccurred:
- ne = errors.New(e.Reason)
- default:
- ne = err
- }
- fmt.Fprintln(os.Stderr, "Error:", ne.Error())
+ fmt.Fprintln(os.Stderr, "Error:", err.Error())
}
}