Added default and max lease time options

This commit is contained in:
Daniel Hobley 2016-06-03 14:11:15 +02:00
Родитель 652e666db4
Коммит e36241579f
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -26,6 +26,12 @@
{%- if config.has_key('next_server') %}
{{ intendation }} next-server {{ config['next_server'] }};
{%- endif %}
{%- if config.has_key('default_lease_time') %}
{{ intendation }} default-lease-time {{ config['default_lease_time'] }};
{%- endif %}
{%- if config.has_key('max_lease_time') %}
{{ intendation }} max-lease-time {{ config['max_lease_time'] }};
{%- endif %}
{%- if config.has_key('routers') and config.routers is string %}
{{ intendation }} option routers {{ config.routers }};
{%- elif config.has_key('routers') and config.routers is sequence %}