From e0c8c14f5be5a2da38683f35e55d19ffc36659ba Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Tue, 5 Feb 2019 13:35:06 +0000 Subject: Fix restore options help text and comments Signed-off-by: Adrian Reber --- cmd/podman/restore.go | 3 +-- 1 file changed, 1 insertion(+), 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) } -- cgit v1.2.3-54-g00ecf