From a60040c62d03894be74911760f13e860d5e323cd Mon Sep 17 00:00:00 2001 From: rajasec Date: Sun, 25 Sep 2016 21:09:23 +0530 Subject: [PATCH] Container must not checkpoint in created state Signed-off-by: rajasec --- checkpoint.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/checkpoint.go b/checkpoint.go index 0a1533f4..192f67ce 100644 --- a/checkpoint.go +++ b/checkpoint.go @@ -38,6 +38,13 @@ checkpointed.`, if err != nil { return err } + status, err := container.Status() + if err != nil { + return(err) + } + if status == libcontainer.Created { + fatalf("Container cannot be checkpointed in created state") + } defer destroy(container) options := criuOptions(context) // these are the mandatory criu options for a container