summaryrefslogtreecommitdiff
path: root/cmd/podman/pause.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/pause.go')
-rw-r--r--cmd/podman/pause.go11
1 files changed, 6 insertions, 5 deletions
diff --git a/cmd/podman/pause.go b/cmd/podman/pause.go
index e8a576599..e6224dcd2 100644
--- a/cmd/podman/pause.go
+++ b/cmd/podman/pause.go
@@ -16,11 +16,12 @@ var (
Pauses one or more running containers. The container name or ID can be used.
`
pauseCommand = cli.Command{
- Name: "pause",
- Usage: "Pauses all the processes in one or more containers",
- Description: pauseDescription,
- Action: pauseCmd,
- ArgsUsage: "CONTAINER-NAME [CONTAINER-NAME ...]",
+ Name: "pause",
+ Usage: "Pauses all the processes in one or more containers",
+ Description: pauseDescription,
+ Action: pauseCmd,
+ ArgsUsage: "CONTAINER-NAME [CONTAINER-NAME ...]",
+ OnUsageError: usageErrorHandler,
}
)