From 82c754be2ce9eab573306c8e9901771b662dc5b7 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 3 Oct 2018 15:34:34 -0400 Subject: Fix pod status reporting for new Exited state Signed-off-by: Matthew Heon --- cmd/podman/pod_ps.go | 2 ++ cmd/podman/shared/pod.go | 2 ++ 2 files changed, 4 insertions(+) (limited to 'cmd') diff --git a/cmd/podman/pod_ps.go b/cmd/podman/pod_ps.go index 8fea3f588..85d4e51e2 100644 --- a/cmd/podman/pod_ps.go +++ b/cmd/podman/pod_ps.go @@ -528,6 +528,8 @@ func getAndSortPodJSONParams(pods []*libpod.Pod, opts podPsOptions, runtime *lib } var status string switch batchInfo.ConState { + case libpod.ContainerStateExited: + fallthrough case libpod.ContainerStateStopped: status = EXITED case libpod.ContainerStateRunning: diff --git a/cmd/podman/shared/pod.go b/cmd/podman/shared/pod.go index badc7a837..4e8e58c4d 100644 --- a/cmd/podman/shared/pod.go +++ b/cmd/podman/shared/pod.go @@ -35,6 +35,8 @@ func GetPodStatus(pod *libpod.Pod) (string, error) { } for _, ctrStatus := range ctrStatuses { switch ctrStatus { + case libpod.ContainerStateExited: + fallthrough case libpod.ContainerStateStopped: statuses[stopped]++ case libpod.ContainerStateRunning: -- cgit v1.2.3-54-g00ecf