diff options
Diffstat (limited to 'completions/bash/podman')
-rw-r--r-- | completions/bash/podman | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 379c33711..f37b45837 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1143,6 +1143,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 @@ -1194,6 +1209,7 @@ _podman_system() { df info prune + reset " __podman_subcommands "$subcommands" && return @@ -1564,6 +1580,7 @@ _podman_images() { --filter -h --help + --history --no-trunc --notruncate -n @@ -2151,10 +2168,13 @@ _podman_rm() { local boolean_options=" --all -a + --cidfile --force -f --help -h + --ignore + -i --latest -l --storage @@ -2427,8 +2447,11 @@ _podman_stop() { local boolean_options=" --all -a + --cidfile -h --help + --ignore + -i --latest -l " @@ -2810,9 +2833,12 @@ _podman_images_prune() { _podman_container_prune() { local options_with_args=" + --filter " local boolean_options=" + -f + --force -h --help " @@ -2989,6 +3015,8 @@ _podman_pod_rm() { --all --help -h + --ignore + -i -f --force --latest @@ -3039,6 +3067,8 @@ _podman_pod_stop() { -a --cleanup --help + --ignore + -i -h --latest -l |