From 2c868598d5f34da8883477848bd24247fc04a959 Mon Sep 17 00:00:00 2001 From: Florian Bittner Date: Thu, 30 Apr 2015 10:24:31 +0200 Subject: [PATCH] Fix filename and next-server options in subnet. --- dhcpd/files/subnet.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dhcpd/files/subnet.jinja b/dhcpd/files/subnet.jinja index 45e8137..bc471a5 100644 --- a/dhcpd/files/subnet.jinja +++ b/dhcpd/files/subnet.jinja @@ -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 }};