mirror of
https://github.com/containers/podman.git
synced 2025-06-19 16:33:24 +08:00
rootless, rm: fix retcode when the container is not found
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
@ -108,6 +108,7 @@ func rmCmd(c *cliconfig.RmValues) error {
|
|||||||
c.Latest = false
|
c.Latest = false
|
||||||
c.InputArgs = []string{rootless.Argument()}
|
c.InputArgs = []string{rootless.Argument()}
|
||||||
} else {
|
} else {
|
||||||
|
exitCode = 0
|
||||||
var containers []*libpod.Container
|
var containers []*libpod.Container
|
||||||
if c.All {
|
if c.All {
|
||||||
containers, err = runtime.GetContainers()
|
containers, err = runtime.GetContainers()
|
||||||
@ -121,6 +122,10 @@ func rmCmd(c *cliconfig.RmValues) error {
|
|||||||
for _, c := range c.InputArgs {
|
for _, c := range c.InputArgs {
|
||||||
container, err = runtime.LookupContainer(c)
|
container, err = runtime.LookupContainer(c)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if errors.Cause(err) == libpod.ErrNoSuchCtr {
|
||||||
|
exitCode = 1
|
||||||
|
continue
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
containers = append(containers, container)
|
containers = append(containers, container)
|
||||||
@ -136,7 +141,7 @@ func rmCmd(c *cliconfig.RmValues) error {
|
|||||||
os.Exit(ret)
|
os.Exit(ret)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
os.Exit(0)
|
os.Exit(exitCode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user