summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
authorzsdc <taras@vyos.io>2021-08-11 13:46:54 +0300
committerzsdc <taras@vyos.io>2021-08-11 13:46:54 +0300
commite79a10207e08cc73a9b2452e396c7556d3ec591f (patch)
tree4d12bbd5ccbbb308d8fbbc52c0d10bf1e6023109 /cloudinit
parent57b6d5b33843821c71d5ae7fc2c984c39ec2b330 (diff)
downloadvyos-cloud-init-e79a10207e08cc73a9b2452e396c7556d3ec591f.tar.gz
vyos-cloud-init-e79a10207e08cc73a9b2452e396c7556d3ec591f.zip
User-Data: T3735: Fixed "multi" nodes type search
Several nodes with "multi" type contain extra space character after the `multi:` mark, which prevents the `cc_vyos_userdata` module to detect their type properly. This commit changes the regex used for detecting such nodes to fix the problem.
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/config/cc_vyos_userdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_vyos_userdata.py b/cloudinit/config/cc_vyos_userdata.py
index 52313433..95ba82de 100644
--- a/cloudinit/config/cc_vyos_userdata.py
+++ b/cloudinit/config/cc_vyos_userdata.py
@@ -57,7 +57,7 @@ def get_multi_nodes():
# search for node.def files
node_def_files = Path(TEMPLATES_DIR).rglob('node.def')
# prepare filter to match multi node files
- regex_filter = re.compile(r'^multi:$', re.MULTILINE)
+ regex_filter = re.compile(r'^multi:.*$', re.MULTILINE)
# add each node.def with multi mark to list
for node_def_file in node_def_files:
file_content = node_def_file.read_text()