summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-04-30 22:22:20 +0200
committerGitHub <noreply@github.com>2021-04-30 22:22:20 +0200
commitcb7241b66882874f643101ecf800f5b435b4b608 (patch)
treea92806640fac814beed71a89c6e5cbfd06033098
parent53d1fa6f7199fdb6a93ed75c623d3da5624e2fae (diff)
parent80fe3ef4d49f6ee277d52ef5847f011e5775e7fb (diff)
downloadvyos-1x-cb7241b66882874f643101ecf800f5b435b4b608.tar.gz
vyos-1x-cb7241b66882874f643101ecf800f5b435b4b608.zip
Merge pull request #825 from sever-sever/T3250
pppoe: T3250: Not mangle values for tag nodes
-rw-r--r--python/vyos/configdict.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/configdict.py b/python/vyos/configdict.py
index 5acb1fdfe..0969a5353 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.