From 11daa5eac463814cad32324081f94ebc0737d9e5 Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Mon, 20 Nov 2023 09:40:58 -0600 Subject: T5763: fix imprecise check for remote file name (cherry picked from commit fe9b08665367b8e7d9b906a0760d44efc9b5cafb) --- src/helpers/vyos-load-config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/vyos-load-config.py b/src/helpers/vyos-load-config.py index e579e81b2..4ec865454 100755 --- a/src/helpers/vyos-load-config.py +++ b/src/helpers/vyos-load-config.py @@ -66,7 +66,7 @@ def get_local_config(filename): return config_str -if any(x in file_name for x in protocols): +if any(file_name.startswith(f'{x}://') for x in protocols): config_string = vyos.remote.get_remote_config(file_name) if not config_string: sys.exit(f"No such config file at '{file_name}'") -- cgit v1.2.3