e756ae42d1
Signed-off-by: Ross Boucher <rboucher@gmail.com>
35 lines
768 B
Go
35 lines
768 B
Go
// +build !windows
|
|
|
|
package supervisor
|
|
|
|
import "github.com/docker/containerd/runtime"
|
|
|
|
type CreateCheckpointTask struct {
|
|
baseTask
|
|
ID string
|
|
CheckpointDir string
|
|
Checkpoint *runtime.Checkpoint
|
|
}
|
|
|
|
func (s *Supervisor) createCheckpoint(t *CreateCheckpointTask) error {
|
|
i, ok := s.containers[t.ID]
|
|
if !ok {
|
|
return ErrContainerNotFound
|
|
}
|
|
return i.container.Checkpoint(*t.Checkpoint, t.CheckpointDir)
|
|
}
|
|
|
|
type DeleteCheckpointTask struct {
|
|
baseTask
|
|
ID string
|
|
CheckpointDir string
|
|
Checkpoint *runtime.Checkpoint
|
|
}
|
|
|
|
func (s *Supervisor) deleteCheckpoint(t *DeleteCheckpointTask) error {
|
|
i, ok := s.containers[t.ID]
|
|
if !ok {
|
|
return ErrContainerNotFound
|
|
}
|
|
return i.container.DeleteCheckpoint(t.Checkpoint.Name, t.CheckpointDir)
|
|
}
|