mirror of
https://github.com/opencontainers/runc.git
synced 2025-10-19 05:44:35 +08:00
Container must not checkpoint in created state
Signed-off-by: rajasec <rajasec79@gmail.com>
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user