summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-30 21:06:11 +0200
committerGitHub <noreply@github.com>2020-04-30 21:06:11 +0200
commit9467694a632b2f42e0bc282bc05775c09e83181c (patch)
tree2d92ad23ac80259a623e09288dfcb80b5f88d2ea /libpod
parent6900517f109d78ed5a9b794666b7d97782cf6ce9 (diff)
parentc3c030f55085949ca2aa704f34a4c203f8e6b079 (diff)
downloadpodman-9467694a632b2f42e0bc282bc05775c09e83181c.tar.gz
podman-9467694a632b2f42e0bc282bc05775c09e83181c.tar.bz2
podman-9467694a632b2f42e0bc282bc05775c09e83181c.zip
Merge pull request #6052 from sujil02/enable-prune-test
Enable prune integration test. Fixes container prune
Diffstat (limited to 'libpod')
-rw-r--r--libpod/runtime_ctr.go3
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