diff options
author | baude <bbaude@redhat.com> | 2019-02-22 11:07:18 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-22 17:00:24 -0600 |
commit | 4bf973a9f61eae3b02925a42ccfa784baeb917dc (patch) | |
tree | 60e9ea8473b2f33c39e46f3954e3e4201a63dc63 /cmd/podman/pod.go | |
parent | c00bf28f24e2eed435c156cd1aabe59c10fe9824 (diff) | |
download | podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.gz podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.bz2 podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.zip |
Enable more podman-remote pod commands
enable pod start, stop, and kill subcommands for the remote-client.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/pod.go')
-rw-r--r-- | cmd/podman/pod.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/podman/pod.go b/cmd/podman/pod.go index d65e0b384..4c7c416ce 100644 --- a/cmd/podman/pod.go +++ b/cmd/podman/pod.go @@ -22,7 +22,10 @@ var podCommand = cliconfig.PodmanCommand{ var podSubCommands = []*cobra.Command{ _podExistsCommand, _podInspectCommand, + _podKillCommand, _podRmCommand, + _podStartCommand, + _podStopCommand, } func init() { |