Skip to content
Snippets Groups Projects
Unverified Commit 97ff67e5 authored by Clicia Scarlet's avatar Clicia Scarlet Committed by GitHub
Browse files

Fix yaml syntax error when use multilines in dns_etchosts (#6960)

parent d4204a42
Branches
Tags
No related merge requests found
......@@ -65,5 +65,5 @@ data:
}
{% if dns_etchosts | default(None) %}
hosts: |
{{ dns_etchosts }}
{{ dns_etchosts | indent(width=4, indentfirst=None) }}
{% endif %}
......@@ -85,5 +85,5 @@ data:
}
{% if dns_etchosts | default(None) %}
hosts: |
{{ dns_etchosts }}
{{ dns_etchosts | indent(width=4, indentfirst=None) }}
{% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment