summaryrefslogtreecommitdiff
path: root/cmd/podman/restore.go
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2018-11-21 13:09:17 +0000
committerAdrian Reber <adrian@lisas.de>2018-11-28 08:00:37 +0100
commit0592558289c354447d28903910f4165ac5acd71a (patch)
treea8034111fc7d73aca2509e26f0ce5aa1223b88cf /cmd/podman/restore.go
parent6df7409cb5a41c710164c42ed35e33b28f3f7214 (diff)
downloadpodman-0592558289c354447d28903910f4165ac5acd71a.tar.gz
podman-0592558289c354447d28903910f4165ac5acd71a.tar.bz2
podman-0592558289c354447d28903910f4165ac5acd71a.zip
Use also a struct to pass options to Restore()
This is basically the same change as ff47a4c2d5485fc49f937f3ce0c4e2fd6bdb1956 (Use a struct to pass options to Checkpoint()) just for the Restore() function. It is used to pass multiple restore options to the API and down to conmon which is used to restore containers. This is for the upcoming changes to support checkpointing and restoring containers with '--tcp-established'. Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'cmd/podman/restore.go')
-rw-r--r--cmd/podman/restore.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/podman/restore.go b/cmd/podman/restore.go
index 067a2b5d4..6383ebf0b 100644
--- a/cmd/podman/restore.go
+++ b/cmd/podman/restore.go
@@ -53,7 +53,9 @@ func restoreCmd(c *cli.Context) error {
}
defer runtime.Shutdown(false)
- keep := c.Bool("keep")
+ options := libpod.ContainerCheckpointOptions{
+ Keep: c.Bool("keep"),
+ }
if err := checkAllAndLatest(c); err != nil {
return err
@@ -62,7 +64,7 @@ func restoreCmd(c *cli.Context) error {
containers, lastError := getAllOrLatestContainers(c, runtime, libpod.ContainerStateRunning, "checkpointed")
for _, ctr := range containers {
- if err = ctr.Restore(context.TODO(), keep); err != nil {
+ if err = ctr.Restore(context.TODO(), options); err != nil {
if lastError != nil {
fmt.Fprintln(os.Stderr, lastError)
}