diff options
author | Nataliia Solomko <natalirs1985@gmail.com> | 2024-12-11 16:48:43 +0200 |
---|---|---|
committer | Nataliia Solomko <natalirs1985@gmail.com> | 2024-12-11 16:48:43 +0200 |
commit | a7be3c684f6e78bb9fce23948d1d3a794febe29a (patch) | |
tree | 829c6c91a239aa493be8ba88509f3e9ab2732558 /python | |
parent | 03a664a5a1f57ffcb9467434c4939f8be7e1860b (diff) | |
download | vyos-1x-a7be3c684f6e78bb9fce23948d1d3a794febe29a.tar.gz vyos-1x-a7be3c684f6e78bb9fce23948d1d3a794febe29a.zip |
op_mode: T6767: Check latest image version in VRF context for "add system image latest vrf <name>"
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/utils/process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/utils/process.py b/python/vyos/utils/process.py index ce880f4a4..d8aabb822 100644 --- a/python/vyos/utils/process.py +++ b/python/vyos/utils/process.py @@ -128,7 +128,7 @@ def run(command, flag='', shell=None, input=None, timeout=None, env=None, def cmd(command, flag='', shell=None, input=None, timeout=None, env=None, stdout=PIPE, stderr=PIPE, decode='utf-8', raising=None, message='', - expect=[0]): + expect=[0], auth=''): """ A wrapper around popen, which returns the stdout and will raise the error code of a command @@ -139,7 +139,7 @@ def cmd(command, flag='', shell=None, input=None, timeout=None, env=None, expect: a list of error codes to consider as normal """ decoded, code = popen( - command, flag, + f'{auth} {command}'.strip(), flag, stdout=stdout, stderr=stderr, input=input, timeout=timeout, env=env, shell=shell, |