diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-01 13:04:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-01 13:04:10 -0700 |
commit | d18f243e121f13df99ed76c848405d1c88f55031 (patch) | |
tree | b4d63dfa9418edf29dbbac4b00ae397e93632299 /completions | |
parent | 732a4c814e575ead4b39f00097f22b2f3b64bfc0 (diff) | |
parent | b559c19c2fa739cf1c8ede50eab8f5acf74f6bf3 (diff) | |
download | podman-d18f243e121f13df99ed76c848405d1c88f55031.tar.gz podman-d18f243e121f13df99ed76c848405d1c88f55031.tar.bz2 podman-d18f243e121f13df99ed76c848405d1c88f55031.zip |
Merge pull request #1737 from baude/parakill
Make kill, pause, and unpause parallel.
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bash/podman | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index ed4e080c9..c029f893a 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1,5 +1,6 @@ : ${PROG:=$(basename ${BASH_SOURCE})} + __podman_previous_extglob_setting=$(shopt -p extglob) shopt -s extglob @@ -1934,6 +1935,10 @@ _podman_save() { } _podman_pause() { + local boolean_options=" + -a + --all + " local options_with_args=" --help -h " @@ -2035,6 +2040,10 @@ _podman_stop() { } _podman_unpause() { + local boolean_options=" + -a + --all + " local options_with_args=" --help -h " |