diff options
author | John Estabrook <jestabro@vyos.io> | 2024-10-07 10:39:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 10:39:47 -0500 |
commit | f7086df4eff221abaaf26d6f05403642c69369a3 (patch) | |
tree | 653f4832a71446403ea9271619861bbe9bd430b4 /src | |
parent | e8c65fafc1ea5c8682b717302a876fcff2067f3d (diff) | |
parent | 8013e228320a414087e3456c1632b479483b856c (diff) | |
download | vyos-1x-f7086df4eff221abaaf26d6f05403642c69369a3.tar.gz vyos-1x-f7086df4eff221abaaf26d6f05403642c69369a3.zip |
Merge pull request #4124 from dmbaturin/T6740-set-to-config-converter
cli: T6740: add a converter from set commands to config
Diffstat (limited to 'src')
-rwxr-xr-x | src/utils/vyos-commands-to-config | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/utils/vyos-commands-to-config b/src/utils/vyos-commands-to-config new file mode 100755 index 000000000..927d9bd70 --- /dev/null +++ b/src/utils/vyos-commands-to-config @@ -0,0 +1,53 @@ +#! /usr/bin/python3 +# +# Copyright (C) 2024 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or later as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + +import sys +import json + +from vyos.configtree import ConfigTree +from vyos.utils.config import parse_commands +from vyos.utils.config import set_tags + +def commands_to_config(cmds): + ct = ConfigTree('') + cmds = parse_commands(cmds) + + for c in cmds: + if c["op"] == "set": + if c["is_leaf"]: + replace = False if c["is_multi"] else True + ct.set(c["path"], value=c["value"], replace=replace) + set_tags(ct, c["path"]) + else: + ct.create_node(c["path"]) + set_tags(ct, c["path"]) + else: + raise ValueError( + f"\"{c['op']}\" is not a supported config operation") + + return ct + + +if __name__ == '__main__': + try: + cmds = sys.stdin.read() + ct = commands_to_config(cmds) + out = ConfigTree(ct.to_string()) + print(str(out)) + except Exception as e: + print(e) + sys.exit(1) |