From f467e61eea94f388f429cdcf0d7fc6f9363bda68 Mon Sep 17 00:00:00 2001 From: Christian Breunig Date: Tue, 13 Feb 2024 21:29:56 +0100 Subject: utils: T5239: add low-level read from config.boot --- python/vyos/util.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'python') diff --git a/python/vyos/util.py b/python/vyos/util.py index 1b16df76b..509b4ea00 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -968,3 +968,26 @@ def get_vrf_members(vrf: str) -> list: if 'ifname' in data: interfaces.append(data.get('ifname')) return interfaces + +def read_saved_value(path: list): + from vyos.defaults import directories + config_file = os.path.join(directories['config'], 'config.boot') + + if not isinstance(path, list) or not path: + return '' + from vyos.configtree import ConfigTree + try: + with open(config_file) as f: + config_string = f.read() + ct = ConfigTree(config_string) + except Exception: + return '' + if not ct.exists(path): + return '' + res = ct.return_values(path) + if len(res) == 1: + return res[0] + res = ct.list_nodes(path) + if len(res) == 1: + return ' '.join(res) + return res -- cgit v1.2.3