diff options
author | baude <bbaude@redhat.com> | 2019-02-24 09:51:56 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-25 16:14:06 -0600 |
commit | 0416b3afc42fb9471c1fdb4555931dba86900e97 (patch) | |
tree | 3bb0ba69a66ae2665ca50a153593cb6fe4768ec3 /cmd/podman/commands.go | |
parent | cf521449e5d11813571c5e9b86668fbefdd5aa99 (diff) | |
download | podman-0416b3afc42fb9471c1fdb4555931dba86900e97.tar.gz podman-0416b3afc42fb9471c1fdb4555931dba86900e97.tar.bz2 podman-0416b3afc42fb9471c1fdb4555931dba86900e97.zip |
podman-remote pod pause|unpause|restart
enable the ability for the remote client to pause, unpause, and
restart pods.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/commands.go')
-rw-r--r-- | cmd/podman/commands.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go index 20eb0f490..fadcca689 100644 --- a/cmd/podman/commands.go +++ b/cmd/podman/commands.go @@ -92,11 +92,8 @@ func getContainerSubCommands() []*cobra.Command { // Commands that the local client implements func getPodSubCommands() []*cobra.Command { return []*cobra.Command{ - _podPauseCommand, - _podRestartCommand, _podStatsCommand, _podTopCommand, - _podUnpauseCommand, } } |