diff options
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bash/podman | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 374a84a4c..0019343e2 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -2086,6 +2086,29 @@ _podman_pod_create() { _complete_ "$options_with_args" "$boolean_options" } +_podman_pod_kill() { + local options_with_args=" + " + + local boolean_options=" + --all + -a + --signal + -s + --latest + -l + " + _complete_ "$options_with_args" "$boolean_options" + case "$cur" in + -*) + COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) + ;; + *) + __podman_complete_pod_names + ;; + esac +} + __podman_pod_ps() { local options_with_args=" -f @@ -2215,6 +2238,7 @@ _podman_pod() { " subcommands=" create + kill ps restart rm |