mirror of
https://github.com/containers/podman.git
synced 2025-06-20 17:13:43 +08:00
remote-podman checkpoint and restore add to container submenu
the remote-podman checkpoint and restore commands were done some time ago but for some reason not added to the container subcommand Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
@ -39,13 +39,11 @@ func getImageSubCommands() []*cobra.Command {
|
|||||||
func getContainerSubCommands() []*cobra.Command {
|
func getContainerSubCommands() []*cobra.Command {
|
||||||
|
|
||||||
return []*cobra.Command{
|
return []*cobra.Command{
|
||||||
_checkpointCommand,
|
|
||||||
_cleanupCommand,
|
_cleanupCommand,
|
||||||
_commitCommand,
|
_commitCommand,
|
||||||
_execCommand,
|
_execCommand,
|
||||||
_mountCommand,
|
_mountCommand,
|
||||||
_refreshCommand,
|
_refreshCommand,
|
||||||
_restoreCommand,
|
|
||||||
_runlabelCommand,
|
_runlabelCommand,
|
||||||
_statsCommand,
|
_statsCommand,
|
||||||
_umountCommand,
|
_umountCommand,
|
||||||
|
@ -51,6 +51,7 @@ var (
|
|||||||
// Commands that are universally implemented.
|
// Commands that are universally implemented.
|
||||||
containerCommands = []*cobra.Command{
|
containerCommands = []*cobra.Command{
|
||||||
_attachCommand,
|
_attachCommand,
|
||||||
|
_checkpointCommand,
|
||||||
_containerExistsCommand,
|
_containerExistsCommand,
|
||||||
_contInspectSubCommand,
|
_contInspectSubCommand,
|
||||||
_diffCommand,
|
_diffCommand,
|
||||||
@ -64,6 +65,7 @@ var (
|
|||||||
_portCommand,
|
_portCommand,
|
||||||
_pruneContainersCommand,
|
_pruneContainersCommand,
|
||||||
_restartCommand,
|
_restartCommand,
|
||||||
|
_restoreCommand,
|
||||||
_runCommand,
|
_runCommand,
|
||||||
_rmCommand,
|
_rmCommand,
|
||||||
_startCommand,
|
_startCommand,
|
||||||
|
Reference in New Issue
Block a user