diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-15 06:23:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 06:23:32 -0700 |
commit | a88cd9a22e5440532519f8ce6746738464f499e5 (patch) | |
tree | df1e504429fa4ef916d59a87588f2dd2bef8f1bc /cmd | |
parent | 4611ff5ce4ff67a142363ab66e10944bfc40f860 (diff) | |
parent | 7c7f4dbb517a2dd678d46833b7ac409a874a37a6 (diff) | |
download | podman-a88cd9a22e5440532519f8ce6746738464f499e5.tar.gz podman-a88cd9a22e5440532519f8ce6746738464f499e5.tar.bz2 podman-a88cd9a22e5440532519f8ce6746738464f499e5.zip |
Merge pull request #6227 from adrianreber/typo
Fix checkpoint --leave-running
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/containers/checkpoint.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/containers/checkpoint.go b/cmd/podman/containers/checkpoint.go index 7259ed38b..c4723af21 100644 --- a/cmd/podman/containers/checkpoint.go +++ b/cmd/podman/containers/checkpoint.go @@ -45,7 +45,7 @@ func init() { }) flags := checkpointCommand.Flags() flags.BoolVarP(&checkpointOptions.Keep, "keep", "k", false, "Keep all temporary checkpoint files") - flags.BoolVarP(&checkpointOptions.LeaveRuninng, "leave-running", "R", false, "Leave the container running after writing checkpoint to disk") + flags.BoolVarP(&checkpointOptions.LeaveRunning, "leave-running", "R", false, "Leave the container running after writing checkpoint to disk") flags.BoolVar(&checkpointOptions.TCPEstablished, "tcp-established", false, "Checkpoint a container with established TCP connections") flags.BoolVarP(&checkpointOptions.All, "all", "a", false, "Checkpoint all running containers") flags.BoolVarP(&checkpointOptions.Latest, "latest", "l", false, "Act on the latest container podman is aware of") |