diff options
author | baude <bbaude@redhat.com> | 2017-11-29 20:01:39 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-01 13:18:32 +0000 |
commit | 1f01faf4375b2dc667b2794e4decdf360d6e32b8 (patch) | |
tree | 6736a22e1387b8443204327a4275efe4c8817e53 /completions/bash/kpod | |
parent | 82018a4a9f5bcbda82c88b1f387be2953bc7a68a (diff) | |
download | podman-1f01faf4375b2dc667b2794e4decdf360d6e32b8.tar.gz podman-1f01faf4375b2dc667b2794e4decdf360d6e32b8.tar.bz2 podman-1f01faf4375b2dc667b2794e4decdf360d6e32b8.zip |
kpod stop -a
Stop all running containers with single switch. Useful for
maintainence of a system or integration tests.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #90
Approved by: rhatdan
Diffstat (limited to 'completions/bash/kpod')
-rw-r--r-- | completions/bash/kpod | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/completions/bash/kpod b/completions/bash/kpod index 93009e6af..68001c36e 100644 --- a/completions/bash/kpod +++ b/completions/bash/kpod @@ -1352,7 +1352,9 @@ _kpod_stop() { local options_with_args=" --timeout -t " - local boolean_options="" + local boolean_options=" + --all + -a" _complete_ "$options_with_args" "$boolean_options" } |