summaryrefslogtreecommitdiff
path: root/cmd/podman/pod.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/pod.go')
-rw-r--r--cmd/podman/pod.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/podman/pod.go b/cmd/podman/pod.go
index 7067f2429..2d9bca21d 100644
--- a/cmd/podman/pod.go
+++ b/cmd/podman/pod.go
@@ -6,15 +6,14 @@ import (
)
var (
- podDescription = `Manage container pods.
-
-Pods are a group of one or more containers sharing the same network, pid and ipc namespaces.`
+ podDescription = `Pods are a group of one or more containers sharing the same network, pid and ipc namespaces.`
)
var podCommand = cliconfig.PodmanCommand{
Command: &cobra.Command{
Use: "pod",
Short: "Manage pods",
Long: podDescription,
+ RunE: commandRunE(),
},
}
@@ -37,5 +36,6 @@ var podSubCommands = []*cobra.Command{
func init() {
podCommand.AddCommand(podSubCommands...)
+ podCommand.SetHelpTemplate(HelpTemplate())
podCommand.SetUsageTemplate(UsageTemplate())
}