diff options
author | baude <bbaude@redhat.com> | 2018-03-06 10:42:13 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-07 20:59:11 +0000 |
commit | 4344639508ccd16041d1ec7fd531b6427f930374 (patch) | |
tree | 4b28256bae65377bdf4f4900461f3f5379869bf1 /completions | |
parent | f57b7bbf43fe7fc7ada8055911c7ac55e53fa698 (diff) | |
download | podman-4344639508ccd16041d1ec7fd531b6427f930374.tar.gz podman-4344639508ccd16041d1ec7fd531b6427f930374.tar.bz2 podman-4344639508ccd16041d1ec7fd531b6427f930374.zip |
podman import, load, and commit are too verbose
The progress should not be show for import, load, and commit. It makes machine
parsing of the output much more difficult. Also, each command should output an
image ID or name for the user.
Added a --verbose flag for users that still want to see progress.
Resolves issue #450
Signed-off-by: baude <bbaude@redhat.com>
Closes: #456
Approved by: rhatdan
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bash/podman | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 6d9098fc9..7e60d1e81 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -672,6 +672,8 @@ _podman_commit() { -h --pause -p + --quiet + -q " _complete_ "$options_with_args" "$boolean_options" @@ -816,6 +818,8 @@ _podman_import() { local boolean_options=" --help -h + --quiet + -q " _complete_ "$options_with_args" "$boolean_options" @@ -1409,7 +1413,8 @@ _podman_save() { " local boolean_options=" --compress - --quiet -q + -q + --quiet " _complete_ "$options_with_args" "$boolean_options" } @@ -1529,7 +1534,8 @@ _podman_load() { --signature-policy " local boolean_options=" - --quiet -q + --quiet + -q " _complete_ "$options_with_args" "$boolean_options" } |