Container must not checkpoint in created state
Signed-off-by: rajasec <rajasec79@gmail.com>
This commit is contained in:
parent
e83ccf62aa
commit
a60040c62d
|
@ -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