Skip to content

Commit

Permalink
Fix yaml syntax error when use multilines in dns_etchosts (#6960)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyuvn authored Nov 28, 2020
1 parent d4204a4 commit 97ff67e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ data:
}
{% if dns_etchosts | default(None) %}
hosts: |
{{ dns_etchosts }}
{{ dns_etchosts | indent(width=4, indentfirst=None) }}
{% endif %}
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ data:
}
{% if dns_etchosts | default(None) %}
hosts: |
{{ dns_etchosts }}
{{ dns_etchosts | indent(width=4, indentfirst=None) }}
{% endif %}

0 comments on commit 97ff67e

Please sign in to comment.