Make sure to wrap domain names in quotes

This commit is contained in:
Daniel Hobley 2016-08-31 09:28:43 +02:00
Родитель 1f71f8b51f
Коммит 25fab6090b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -9,7 +9,7 @@ option domain-name "{{ salt['pillar.get']('dhcpd:domain_name') }}";
{% endif -%}
{% if salt['pillar.get']('dhcpd:domain_search', False) -%}
option domain-search
{%- for dns_server in salt['pillar.get']('dhcpd:domain_search') %} {{ dns_server }}
{%- for search_domain in salt['pillar.get']('dhcpd:domain_search') %} "{{ search_domain }}"
{%- if not loop.last %}, {% else %};{% endif %}
{%- endfor %}
{% endif -%}