diff options
author | baude <bbaude@redhat.com> | 2018-09-04 12:33:29 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-09-05 11:06:59 +0000 |
commit | 4ddcbd7941e8cb32cbdcac2f1aa3a939e82be764 (patch) | |
tree | ad977e07efc403cab09795e56ab839839809c033 | |
parent | 807f6f8d8f98422cfcfe7e474e26a985d951af4d (diff) | |
download | podman-4ddcbd7941e8cb32cbdcac2f1aa3a939e82be764.tar.gz podman-4ddcbd7941e8cb32cbdcac2f1aa3a939e82be764.tar.bz2 podman-4ddcbd7941e8cb32cbdcac2f1aa3a939e82be764.zip |
rmi remove all not error when no images are present
When running podman rm -a on a storage where no images exist,
the exit code should NOT be non-zero.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #1402
Approved by: rhatdan
-rw-r--r-- | cmd/podman/rmi.go | 7 | ||||
-rw-r--r-- | test/e2e/rmi_test.go | 10 |
2 files changed, 17 insertions, 0 deletions
diff --git a/cmd/podman/rmi.go b/cmd/podman/rmi.go index e29f32c7c..fdeab6b80 100644 --- a/cmd/podman/rmi.go +++ b/cmd/podman/rmi.go @@ -111,6 +111,13 @@ func rmiCmd(c *cli.Context) error { } } + // If the user calls remove all and there are none, it should not be a + // non-zero exit + if !deleted && removeAll { + return nil + } + // the user tries to remove images that do not exist, that should be a + // non-zero exit if !deleted { return errors.Errorf("no valid images to delete") } diff --git a/test/e2e/rmi_test.go b/test/e2e/rmi_test.go index 054b83431..8224cd345 100644 --- a/test/e2e/rmi_test.go +++ b/test/e2e/rmi_test.go @@ -238,4 +238,14 @@ var _ = Describe("Podman rmi", func() { Expect(session.ExitCode()).To(Equal(0)) Expect(len(session.OutputToString())).To(Equal(0)) }) + + It("podman rmi -a with no images should be exit 0", func() { + session := podmanTest.Podman([]string{"rmi", "-fa"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + + session2 := podmanTest.Podman([]string{"rmi", "-fa"}) + session2.WaitWithDefaultTimeout() + Expect(session2.ExitCode()).To(Equal(0)) + }) }) |