diff options
author | John Estabrook <jestabro@vyos.io> | 2023-11-27 21:30:00 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2023-12-16 20:37:10 -0600 |
commit | 1f7dc278fc73f710eb41446a56031dcc50bfa0af (patch) | |
tree | cd89db9286ca5d1fbd09d7db1772ef967ea395bf /src/op_mode | |
parent | af81dafa28947f364409e347227a2ac1d0b6c53d (diff) | |
download | vyos-1x-1f7dc278fc73f710eb41446a56031dcc50bfa0af.tar.gz vyos-1x-1f7dc278fc73f710eb41446a56031dcc50bfa0af.zip |
image-tools: T5751: restore arg raise_error for non-interactive use
(cherry picked from commit 35f69340ef189e27b380074bb687ad58f29e9433)
Diffstat (limited to 'src/op_mode')
-rwxr-xr-x | src/op_mode/image_installer.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/op_mode/image_installer.py b/src/op_mode/image_installer.py index e327fef67..df5d897b7 100755 --- a/src/op_mode/image_installer.py +++ b/src/op_mode/image_installer.py @@ -389,13 +389,14 @@ def image_fetch(image_path: str, no_prompt: bool = False) -> Path: # check a type of path if urlparse(image_path).scheme: # download an image - download(ISO_DOWNLOAD_PATH, image_path, True, True) + download(ISO_DOWNLOAD_PATH, image_path, True, True, + raise_error=True) # download a signature sign_file = (False, '') for sign_type in ['minisig', 'asc']: try: download(f'{ISO_DOWNLOAD_PATH}.{sign_type}', - f'{image_path}.{sign_type}') + f'{image_path}.{sign_type}', raise_error=True) sign_file = (True, sign_type) break except Exception: |