diff options
author | Adrian Reber <areber@redhat.com> | 2018-11-20 14:08:08 +0000 |
---|---|---|
committer | Adrian Reber <adrian@lisas.de> | 2018-11-20 17:25:44 +0100 |
commit | ff47a4c2d5485fc49f937f3ce0c4e2fd6bdb1956 (patch) | |
tree | 78beac1e6a0d70c39dbde1a4255f5c3b0aca023c /cmd/podman/checkpoint.go | |
parent | ea928f2de6c111aeb92a7584675f2128abd3254e (diff) | |
download | podman-ff47a4c2d5485fc49f937f3ce0c4e2fd6bdb1956.tar.gz podman-ff47a4c2d5485fc49f937f3ce0c4e2fd6bdb1956.tar.bz2 podman-ff47a4c2d5485fc49f937f3ce0c4e2fd6bdb1956.zip |
Use a struct to pass options to Checkpoint()
For upcoming changes to the Checkpoint() functions this commit switches
checkpoint options from a boolean to a struct, so that additional
options can be passed easily to Checkpoint() without changing the
function parameters all the time.
Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'cmd/podman/checkpoint.go')
-rw-r--r-- | cmd/podman/checkpoint.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/podman/checkpoint.go b/cmd/podman/checkpoint.go index bf280920d..49e2aec63 100644 --- a/cmd/podman/checkpoint.go +++ b/cmd/podman/checkpoint.go @@ -50,7 +50,9 @@ func checkpointCmd(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 @@ -59,7 +61,7 @@ func checkpointCmd(c *cli.Context) error { containers, lastError := getAllOrLatestContainers(c, runtime, libpod.ContainerStateRunning, "running") for _, ctr := range containers { - if err = ctr.Checkpoint(context.TODO(), keep); err != nil { + if err = ctr.Checkpoint(context.TODO(), options); err != nil { if lastError != nil { fmt.Fprintln(os.Stderr, lastError) } |