summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-02-20 17:43:34 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-02-21 13:32:59 +0000
commit4803b5a639317cbe3bdeb32e41bafc6c17e34745 (patch)
tree1c83f37bc7a5253c0bd67be9a134dc1be2d86a7b /cmd
parent4929e37507b530cb1d0e92cfcd252b0abefb4f2f (diff)
downloadpodman-4803b5a639317cbe3bdeb32e41bafc6c17e34745.tar.gz
podman-4803b5a639317cbe3bdeb32e41bafc6c17e34745.tar.bz2
podman-4803b5a639317cbe3bdeb32e41bafc6c17e34745.zip
Alias --time to --timeout for 'podman stop'
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #375 Approved by: rhatdan
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/stop.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/stop.go b/cmd/podman/stop.go
index 9a0f28994..1d112ffe5 100644
--- a/cmd/podman/stop.go
+++ b/cmd/podman/stop.go
@@ -12,7 +12,7 @@ import (
var (
stopFlags = []cli.Flag{
cli.UintFlag{
- Name: "timeout, t",
+ Name: "timeout, time, t",
Usage: "Seconds to wait for stop before killing the container",
Value: libpod.CtrRemoveTimeout,
},