Merge pull request #1076 from rajasec/checkpoint-create
Container must not checkpoint in created state
This commit is contained in:
commit
6cbd8e20ef
|
@ -38,6 +38,13 @@ checkpointed.`,
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
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)
|
defer destroy(container)
|
||||||
options := criuOptions(context)
|
options := criuOptions(context)
|
||||||
// these are the mandatory criu options for a container
|
// these are the mandatory criu options for a container
|
||||||
|
|
Loading…
Reference in New Issue