From 4344639508ccd16041d1ec7fd531b6427f930374 Mon Sep 17 00:00:00 2001 From: baude Date: Tue, 6 Mar 2018 10:42:13 -0600 Subject: 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 Closes: #456 Approved by: rhatdan --- completions/bash/podman | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'completions') 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" } -- cgit v1.2.3-54-g00ecf