diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-02-02 21:27:47 +0100 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-02-02 21:30:42 +0100 |
| commit | 9e3f96b9809964541d911b62831ee31efa13289e (patch) | |
| tree | 4760cc104d1af780c54fd552c6b728532c3e16eb /src | |
| parent | dfa9816e01caa1d0abca8273ce305a53188a5577 (diff) | |
| download | vyos-1x-9e3f96b9809964541d911b62831ee31efa13289e.tar.gz vyos-1x-9e3f96b9809964541d911b62831ee31efa13289e.zip | |
op-mode: T8018: disable buffered output when adding container images
Diffstat (limited to 'src')
| -rwxr-xr-x | src/op_mode/container.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/op_mode/container.py b/src/op_mode/container.py index 281c95e2c..d513bb623 100755 --- a/src/op_mode/container.py +++ b/src/op_mode/container.py @@ -94,8 +94,7 @@ def add_image(name: str): rc, out = rc_cmd(cmd) if rc != 0: raise vyos.opmode.InternalError(out) - rc, output = rc_cmd(f'podman image pull {name}') - print(output) + rc, output = rc_cmd(f'podman image pull {name}', buffered=False) if rc != 0: raise vyos.opmode.InternalError(output) |
