summaryrefslogtreecommitdiff
path: root/libpod/pod_api.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-04-01 18:17:16 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-05-03 10:36:16 -0400
commitdc42304f3804632d01345478ab9b1f122b48d516 (patch)
treed63d4dc4738ab48f8f0ba81674303b9c94147d6f /libpod/pod_api.go
parent0d73ee40b2e95ec7d50c7ee72fcb24cae0e190a7 (diff)
downloadpodman-dc42304f3804632d01345478ab9b1f122b48d516.tar.gz
podman-dc42304f3804632d01345478ab9b1f122b48d516.tar.bz2
podman-dc42304f3804632d01345478ab9b1f122b48d516.zip
Sending signals to containers prevents restart policy
Noticed this when testing some behavior with Docker. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod/pod_api.go')
-rw-r--r--libpod/pod_api.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/libpod/pod_api.go b/libpod/pod_api.go
index 9a6baf23e..9ed5c88eb 100644
--- a/libpod/pod_api.go
+++ b/libpod/pod_api.go
@@ -364,6 +364,13 @@ func (p *Pod) Kill(signal uint) (map[string]error, error) {
}
logrus.Debugf("Killed container %s with signal %d", ctr.ID(), signal)
+
+ ctr.state.StoppedByUser = true
+ if err := ctr.save(); err != nil {
+ ctrErrors[ctr.ID()] = err
+ }
+
+ ctr.lock.Unlock()
}
if len(ctrErrors) > 0 {