refactor range configuration
diff --git a/isc_dhcp/files/dhcpd.subnets b/isc_dhcp/files/dhcpd.subnets
index b1f6774..7305810 100644
--- a/isc_dhcp/files/dhcpd.subnets
+++ b/isc_dhcp/files/dhcpd.subnets
@@ -4,11 +4,7 @@
subnet {{ subnet.network }} netmask {{ subnet.netmask }} {
{%- if subnet.range is defined %}
- pool
- {
- #failover peer "dhcp-failover";
- range {{ subnet.range }};
- }
+ range {{ subnet.range }};
{%- endif %}
option subnet-mask {{ subnet.netmask }};
@@ -20,4 +16,4 @@
{%- endif %}
}
-{%- endfor %}
\ No newline at end of file
+{%- endfor %}