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:
baude
2019-05-06 14:54:02 -05:00
parent b12d15637c
commit d370f10efa
2 changed files with 2 additions and 2 deletions

View File

@ -39,13 +39,11 @@ func getImageSubCommands() []*cobra.Command {
func getContainerSubCommands() []*cobra.Command {
return []*cobra.Command{
_checkpointCommand,
_cleanupCommand,
_commitCommand,
_execCommand,
_mountCommand,
_refreshCommand,
_restoreCommand,
_runlabelCommand,
_statsCommand,
_umountCommand,

View File

@ -51,6 +51,7 @@ var (
// Commands that are universally implemented.
containerCommands = []*cobra.Command{
_attachCommand,
_checkpointCommand,
_containerExistsCommand,
_contInspectSubCommand,
_diffCommand,
@ -64,6 +65,7 @@ var (
_portCommand,
_pruneContainersCommand,
_restartCommand,
_restoreCommand,
_runCommand,
_rmCommand,
_startCommand,