From d127d853066ba713046a67e0e400300a89880e8e Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Tue, 12 Dec 2023 22:26:47 -0600 Subject: image-tools: T5821: restore vrf-aware add system image (cherry picked from commit 90f2d9865051b00290dd5b7328a046e823b658dc) --- src/helpers/simple-download.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 src/helpers/simple-download.py (limited to 'src/helpers') diff --git a/src/helpers/simple-download.py b/src/helpers/simple-download.py new file mode 100755 index 000000000..501af75f5 --- /dev/null +++ b/src/helpers/simple-download.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python3 + +import sys +from argparse import ArgumentParser +from vyos.remote import download + +parser = ArgumentParser() +parser.add_argument('--local-file', help='local file', required=True) +parser.add_argument('--remote-path', help='remote path', required=True) + +args = parser.parse_args() + +try: + download(args.local_file, args.remote_path, + check_space=True, raise_error=True) +except Exception as e: + print(e) + sys.exit(1) + +sys.exit() -- cgit v1.2.3