From e91ec38a70f4755d06972a0b65edd1f2e5366581 Mon Sep 17 00:00:00 2001 From: baude Date: Wed, 20 Feb 2019 15:02:18 -0600 Subject: enable podman-remote pod rm add the ability to delete a pod from the remote client. Signed-off-by: baude --- cmd/podman/pod.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'cmd/podman/pod.go') diff --git a/cmd/podman/pod.go b/cmd/podman/pod.go index e988875ab..cf87730d7 100644 --- a/cmd/podman/pod.go +++ b/cmd/podman/pod.go @@ -18,7 +18,13 @@ var podCommand = cliconfig.PodmanCommand{ }, } +//podSubCommands are implemented both in local and remote clients +var podSubCommands = []*cobra.Command{ + _podRmCommand, +} + func init() { + podCommand.AddCommand(podSubCommands...) podCommand.AddCommand(getPodSubCommands()...) podCommand.SetUsageTemplate(UsageTemplate()) } -- cgit v1.2.3-54-g00ecf