Fix filename and next-server options in subnet.

This commit is contained in:
Florian Bittner 2015-04-30 10:24:31 +02:00
Родитель 8f3fda3d63
Коммит 2c868598d5
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -15,10 +15,10 @@
{{ intendation }} option broadcast-address {{ config['broadcast_address'] }};
{%- endif %}
{%- if config.has_key('filename') %}
{{ intendation }} option filename {{ config['filename'] }};
{{ intendation }} filename "{{ config['filename'] }}";
{%- endif %}
{%- if config.has_key('next_server') %}
{{ intendation }} option next-server {{ config['next_server'] }};
{{ intendation }} next-server {{ config['next_server'] }};
{%- endif %}
{%- if config.has_key('routers') and config.routers is string %}
{{ intendation }} option routers {{ config.routers }};