Browse code

Remove checkpoint methods from builder backend

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>

Tonis Tiigi authored on 2016/10/12 06:00:29
Showing 1 changed files
... ...
@@ -130,13 +130,6 @@ type Backend interface {
130 130
 	// ContainerUpdateCmdOnBuild updates container.Path and container.Args
131 131
 	ContainerUpdateCmdOnBuild(containerID string, cmd []string) error
132 132
 
133
-	// CheckpointCreate checkpoints a running container
134
-	CheckpointCreate(container string, config types.CheckpointCreateOptions) error
135
-	// CheckpointDelete deletes a container's checkpoint
136
-	CheckpointDelete(container string, checkpoint string) error
137
-	// CheckpointList lists the available checkpoints for a container
138
-	CheckpointList(container string) ([]types.Checkpoint, error)
139
-
140 133
 	// ContainerCopy copies/extracts a source FileInfo to a destination path inside a container
141 134
 	// specified by a container object.
142 135
 	// TODO: make an Extract method instead of passing `decompress`