Fix curly brackets for ntp::servers: to prevent HTML escaping

According to MUSTACHE(5) documentation to prevent HTML escaping
value should be in triple curly brackets {{{ }}}. This change
adds missing brackets around ntp::servers: which resulted
improper values to be in hieradata.

Change-Id: Ia3f1343704a660a28ba4e48513eb2983849e87c3
Closes-Bug: #1794501
This commit is contained in:
Michal 2018-09-26 13:12:59 +02:00 committed by Alex Schultz
parent 0fd8cd3f30
commit ac19cbc998
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ controller_host_wrapped: "{{LOCAL_IP_WRAPPED}}"
controller_admin_host: {{UNDERCLOUD_ADMIN_HOST}}
controller_public_host: {{UNDERCLOUD_PUBLIC_HOST}}
{{#UNDERCLOUD_NTP_SERVERS}}
ntp::servers: {{UNDERCLOUD_NTP_SERVERS}}
ntp::servers: {{{UNDERCLOUD_NTP_SERVERS}}}
{{/UNDERCLOUD_NTP_SERVERS}}
sysctl_settings: {{SYSCTL_SETTINGS}}