diff options
author | Sujil02 <sushah@redhat.com> | 2020-04-30 11:26:02 -0400 |
---|---|---|
committer | Sujil02 <sushah@redhat.com> | 2020-04-30 12:03:09 -0400 |
commit | c3c030f55085949ca2aa704f34a4c203f8e6b079 (patch) | |
tree | 84805dc007a162fa132dccce6bc34b383e7b80a3 /libpod/runtime_ctr.go | |
parent | fc9451ed15e3ea2fbdcd5754b367db74eec1063e (diff) | |
download | podman-c3c030f55085949ca2aa704f34a4c203f8e6b079.tar.gz podman-c3c030f55085949ca2aa704f34a4c203f8e6b079.tar.bz2 podman-c3c030f55085949ca2aa704f34a4c203f8e6b079.zip |
Enable prune integration test. Fixes container prune.
Fixes container prune to prune created and configured containers.
Disables couple of system prune test as not yet in with v2.
Signed-off-by: Sujil02 <sushah@redhat.com>
Diffstat (limited to 'libpod/runtime_ctr.go')
-rw-r--r-- | libpod/runtime_ctr.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/runtime_ctr.go b/libpod/runtime_ctr.go index 3dc8d3d0f..1d880531e 100644 --- a/libpod/runtime_ctr.go +++ b/libpod/runtime_ctr.go @@ -869,7 +869,8 @@ func (r *Runtime) PruneContainers(filterFuncs []ContainerFilter) (map[string]int logrus.Error(err) return false } - if state == define.ContainerStateStopped || state == define.ContainerStateExited { + if state == define.ContainerStateStopped || state == define.ContainerStateExited || + state == define.ContainerStateCreated || state == define.ContainerStateConfigured { return true } return false |