diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-13 21:29:56 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-02-13 21:29:56 +0100 |
commit | f467e61eea94f388f429cdcf0d7fc6f9363bda68 (patch) | |
tree | ed05c3958f86a9818404d494cbd9ab59598d56e9 /python | |
parent | f583773faf67b3b1227681ff12e418f6fdc5a0fa (diff) | |
download | vyos-1x-f467e61eea94f388f429cdcf0d7fc6f9363bda68.tar.gz vyos-1x-f467e61eea94f388f429cdcf0d7fc6f9363bda68.zip |
utils: T5239: add low-level read from config.boot
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/util.py | 23 |
1 files changed, 23 insertions, 0 deletions
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 |