Bug 1508366
| Summary: | docker agent ignores existing but stopped containers | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 7 | Reporter: | Andrew Beekhof <abeekhof> |
| Component: | resource-agents | Assignee: | Oyvind Albrigtsen <oalbrigt> |
| Status: | CLOSED ERRATA | QA Contact: | Udi Shkalim <ushkalim> |
| Severity: | urgent | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 7.4 | CC: | agk, cluster-maint, fdinitto, mnovacek |
| Target Milestone: | rc | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | resource-agents-3.9.5-111.el7 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2018-04-10 12:09:28 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Andrew Beekhof
2017-11-01 10:14:55 UTC
Patch against 3.9.5-105.el7.x86_64:
--- docker 2017-11-01 21:50:21.423600738 +1100
+++ docker.beekhof 2017-11-01 21:48:10.570475949 +1100
#######################################################################
@@ -234,16 +235,16 @@ docker_simple_status()
# retrieve the 'Running' attribute for the container
val=$(docker inspect --format {{.State.Running}} $CONTAINER 2>/dev/null)
- if [ $? -ne 0 ]; then
- #not running as a result of container not being found
- return $OCF_NOT_RUNNING
- fi
-
- if ocf_is_true "$val"; then
+ if [ $? -eq 0 ]; then
+ if ocf_is_true "$val" ; then
# container exists and is running
return $OCF_SUCCESS
fi
-
+ fi
+ # Known but in a stopped state
+ if ! ocf_is_true "$OCF_RESKEY_reuse"; then
+ return $OCF_ERR_GENERIC
+ fi
return $OCF_NOT_RUNNING
}
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2018:0757 |