diff options
author | Matthew Heon <mheon@redhat.com> | 2020-02-06 13:19:50 -0500 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2020-02-06 13:41:57 -0500 |
commit | 41b735af053b85aeacc65e45d068246cad789cd7 (patch) | |
tree | 505c334ba4cda39f63a378e5209df25c41b6c05a /completions/bash | |
parent | 62111bceb7dab4fc51760b86f762df3716f296fc (diff) | |
download | podman-41b735af053b85aeacc65e45d068246cad789cd7.tar.gz podman-41b735af053b85aeacc65e45d068246cad789cd7.tar.bz2 podman-41b735af053b85aeacc65e45d068246cad789cd7.zip |
Move podman-service to podman-system-service
Fixes #5108
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'completions/bash')
-rw-r--r-- | completions/bash/podman | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 57b9547a7..56559c142 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1200,6 +1200,19 @@ _podman_system_prune() { esac } +_podman_system_service() { + local options_with_args=" + -t + --timeout + " + local boolean_options=" + --help + -h + --varlink + " + _complete_ "$options_with_args" "$boolean_options" +} + _podman_system() { local boolean_options=" --help @@ -1755,19 +1768,6 @@ _podman_search() { _complete_ "$options_with_args" "$boolean_options" } -_podman_service() { - local options_with_args=" - -t - --timeout - " - local boolean_options=" - --help - -h - --varlink - " - _complete_ "$options_with_args" "$boolean_options" -} - _podman_unmount() { _podman_umount $@ } |