diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-01 12:19:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-01 12:19:14 -0700 |
commit | 732a4c814e575ead4b39f00097f22b2f3b64bfc0 (patch) | |
tree | 1abed97a2cff7cc2b78c183986be959ba8f2a992 /completions/bash/podman | |
parent | 26330aa99577b36afff9ff36a86d54978195ab2e (diff) | |
parent | 2011782d9d52958546e481f84892d00a548b9e12 (diff) | |
download | podman-732a4c814e575ead4b39f00097f22b2f3b64bfc0.tar.gz podman-732a4c814e575ead4b39f00097f22b2f3b64bfc0.tar.bz2 podman-732a4c814e575ead4b39f00097f22b2f3b64bfc0.zip |
Merge pull request #1738 from baude/pararestart
Make restart parallel and add --all
Diffstat (limited to 'completions/bash/podman')
-rw-r--r-- | completions/bash/podman | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 5cfed348f..ed4e080c9 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1770,8 +1770,13 @@ _podman_restart() { --timeout -t " local boolean_options=" + --all + -a --latest - -l" + -l + --running + --timeout + -t" case "$cur" in -*) COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) |