Skip to content

Commit 0182470

Browse files
committed
Make navigator image pulling silent
Because podman in particular is overly verbose even when image is already present, we switch to a default quiet mode.
1 parent 7c92360 commit 0182470

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansible_navigator/image_manager/puller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def _generate_pull_command(self) -> str:
199199
Returns:
200200
The command
201201
"""
202-
command_line = [self._container_engine, "pull"]
202+
command_line = [self._container_engine, "pull", "-q"]
203203
command_line.extend(self._arguments)
204204
command_line.append(self._image)
205205
joined_command = " ".join(command_line)

0 commit comments

Comments
 (0)