summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-06-11 16:06:52 +0200
committerGitHub <noreply@github.com>2021-06-11 16:06:52 +0200
commit7c2270d298c71ad94e28e6492de2a3cf7c1e67fe (patch)
tree6c598474211a471db61264bf8eb0a9f3ce1b111c
parent556e03922f78f8e258c6d6630ad47569be376e11 (diff)
parentc22c4e90f762942b34f3d62e419f6a68cdeb0347 (diff)
downloadvyos-1x-7c2270d298c71ad94e28e6492de2a3cf7c1e67fe.tar.gz
vyos-1x-7c2270d298c71ad94e28e6492de2a3cf7c1e67fe.zip
Merge pull request #873 from sever-sever/T3614
containers: T3614: Fix for network names with hyphen
-rwxr-xr-xsrc/conf_mode/containers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/containers.py b/src/conf_mode/containers.py
index 5efdb6a2f..21b47f42a 100755
--- a/src/conf_mode/containers.py
+++ b/src/conf_mode/containers.py
@@ -75,7 +75,7 @@ def get_config(config=None):
base = ['container']
container = conf.get_config_dict(base, key_mangling=('-', '_'),
- get_first_key=True)
+ 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.
default_values = defaults(base)