summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2019-02-05 13:35:06 +0000
committerAdrian Reber <areber@redhat.com>2019-06-03 22:05:12 +0200
commite0c8c14f5be5a2da38683f35e55d19ffc36659ba (patch)
tree4a262e5d84c4ed0f8bc4641f55de2848d8c5e9f0 /cmd
parente41162076a2668fa93c61dadaf72d285590c4c6e (diff)
downloadpodman-e0c8c14f5be5a2da38683f35e55d19ffc36659ba.tar.gz
podman-e0c8c14f5be5a2da38683f35e55d19ffc36659ba.tar.bz2
podman-e0c8c14f5be5a2da38683f35e55d19ffc36659ba.zip
Fix restore options help text and comments
Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/restore.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/podman/restore.go b/cmd/podman/restore.go
index 8cfd5ca0d..36ae16183 100644
--- a/cmd/podman/restore.go
+++ b/cmd/podman/restore.go
@@ -43,8 +43,7 @@ func init() {
flags.BoolVarP(&restoreCommand.All, "all", "a", false, "Restore all checkpointed containers")
flags.BoolVarP(&restoreCommand.Keep, "keep", "k", false, "Keep all temporary checkpoint files")
flags.BoolVarP(&restoreCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- // TODO: add ContainerStateCheckpointed
- flags.BoolVar(&restoreCommand.TcpEstablished, "tcp-established", false, "Checkpoint a container with established TCP connections")
+ flags.BoolVar(&restoreCommand.TcpEstablished, "tcp-established", false, "Restore a container with established TCP connections")
markFlagHiddenForRemoteClient("latest", flags)
}