From 73e39452828c2715dc5943de605f7cd488db24cb Mon Sep 17 00:00:00 2001 From: haircommander Date: Fri, 20 Jul 2018 14:06:26 -0400 Subject: Add pod kill With tests, man page, and completions. Signed-off-by: haircommander Closes: #1125 Approved by: rhatdan --- completions/bash/podman | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'completions') 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 -- cgit v1.2.3-54-g00ecf