diff options
author | sever-sever <v.gletenko@vyos.io> | 2021-04-29 08:22:01 +0000 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-10 21:23:44 +0200 |
commit | 775eaa3f20c56a357130e8c08ec2c35033db8fd9 (patch) | |
tree | 4de6ffcaa161bc9179f9766870a641140675c118 /python | |
parent | 1c8301544c8d695aad2e5b0277839338f05ecb05 (diff) | |
download | vyos-1x-775eaa3f20c56a357130e8c08ec2c35033db8fd9.tar.gz vyos-1x-775eaa3f20c56a357130e8c08ec2c35033db8fd9.zip |
pppoe: T3250: Not mangle values for tag nodes
(cherry picked from commit 80fe3ef4d49f6ee277d52ef5847f011e5775e7fb)
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/configdict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/configdict.py b/python/vyos/configdict.py index 4f9d3739d..dba992d56 100644 --- a/python/vyos/configdict.py +++ b/python/vyos/configdict.py @@ -499,7 +499,7 @@ def get_accel_dict(config, base, chap_secrets): from vyos.util import get_half_cpus from vyos.template import is_ipv4 - dict = config.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True) + dict = config.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True, no_tag_node_value_mangle=True) # We have gathered the dict representation of the CLI, but there are default # options which we need to update into the dictionary retrived. |