diff options
Diffstat (limited to 'completions/bash/podman')
-rw-r--r-- | completions/bash/podman | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 98950799e..5634a5d8c 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1142,6 +1142,21 @@ _podman_container() { esac } +_podman_system_reset() { + local options_with_args=" + " + local boolean_options=" + -h + --help + --force + " + case "$cur" in + -*) + COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) + ;; + esac +} + _podman_system_df() { local options_with_args=" --format @@ -1193,6 +1208,7 @@ _podman_system() { df info prune + reset " __podman_subcommands "$subcommands" && return @@ -1563,6 +1579,7 @@ _podman_images() { --filter -h --help + --history --no-trunc --notruncate -n @@ -2155,6 +2172,8 @@ _podman_rm() { -f --help -h + --ignore + -i --latest -l --storage @@ -2430,6 +2449,8 @@ _podman_stop() { --cidfile -h --help + --ignore + -i --latest -l " @@ -2990,6 +3011,8 @@ _podman_pod_rm() { --all --help -h + --ignore + -i -f --force --latest @@ -3040,6 +3063,8 @@ _podman_pod_stop() { -a --cleanup --help + --ignore + -i -h --latest -l |