diff options
author | Christian Poessinger <christian@poessinger.com> | 2017-12-31 12:16:23 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2017-12-31 12:18:32 +0100 |
commit | 97e75dae0c4e75fa35fed1fb3407a429f7bfe537 (patch) | |
tree | cb0509dc71201ac4f513a546da74a265e3b7bff7 /scripts | |
parent | 8826edfcbb60bc4372978b4a11d2300b07d5ac1c (diff) | |
download | vyos-1x-97e75dae0c4e75fa35fed1fb3407a429f7bfe537.tar.gz vyos-1x-97e75dae0c4e75fa35fed1fb3407a429f7bfe537.zip |
Support setting optional 'type' node in command templates other than 'txt'
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-command-templates | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/build-command-templates b/scripts/build-command-templates index ff0ce05f0..d1871c1c8 100755 --- a/scripts/build-command-templates +++ b/scripts/build-command-templates @@ -165,6 +165,12 @@ def get_properties(p): except: pass + # Get type + try: + props["type"] = p.find("type").text + except: + pass + # Get "multi" if p.find("multi") is not None: props["multi"] = True @@ -233,7 +239,8 @@ def process_node(n, tmpl_dir): props["owner"] = owner # Type should not be set for non-tag, non-leaf nodes if node_type != "node": - props["type"] = "txt" + if "type" not in props.keys(): + props["type"] = "txt" if node_type == "tagNode": props["tag"] = "True" |