fix intend

This commit is contained in:
webzwo0i 2016-12-16 00:01:06 +01:00
parent a026b6e960
commit 210ae688ce
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ subnet {{ subnet.split('/')[0] }} netmask {{ netmasks[subnet.split('/')[1]] }} {
default-lease-time {{ conf['time'] }};
max-lease-time {{ conf['max-time'] }};
{%- if conf.get('lower-max-time') and conf.get('time') %}
min-lease-time {{ conf['time'] }};
adaptive-lease-time-threshold {{ conf['lower-max-time'] }};
min-lease-time {{ conf['time'] }};
adaptive-lease-time-threshold {{ conf['lower-max-time'] }};
{%- endif %}
range {{ conf['start'] }} {{ conf['end'] }};
{%- for name, value in (conf.get('opts') or {}).items() %}