diff options
author | Ed Santiago <santiago@redhat.com> | 2019-02-27 06:21:27 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2019-02-27 14:18:15 -0700 |
commit | 69808ff3200cfa0da5b7b42186446ce88ab323d5 (patch) | |
tree | 834ccac8c5c87386c54b9fe25f91c64f92764a3a /cmd/podman/checkpoint.go | |
parent | 9a3a59c3a5c838abcd8aaf2217bb3bb5f7e995b2 (diff) | |
download | podman-69808ff3200cfa0da5b7b42186446ce88ab323d5.tar.gz podman-69808ff3200cfa0da5b7b42186446ce88ab323d5.tar.bz2 podman-69808ff3200cfa0da5b7b42186446ce88ab323d5.zip |
fixup! Correction to 'checkpoint'
...it's a subcommand of 'podman container'
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'cmd/podman/checkpoint.go')
-rw-r--r-- | cmd/podman/checkpoint.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/podman/checkpoint.go b/cmd/podman/checkpoint.go index 8c4b8ad3c..367065766 100644 --- a/cmd/podman/checkpoint.go +++ b/cmd/podman/checkpoint.go @@ -32,9 +32,9 @@ var ( Args: func(cmd *cobra.Command, args []string) error { return checkAllAndLatest(cmd, args, false) }, - Example: `podman checkpoint --keep ctrID - podman checkpoint --all - podman checkpoint --leave-running --latest`, + Example: `podman container checkpoint --keep ctrID + podman container checkpoint --all + podman container checkpoint --leave-running --latest`, } ) |