blob: 835da148f9902952a85cabc06882bc4350b204e3 [file] [log] [blame]
Ales Komarek6d9bc2c2014-09-21 17:25:05 +02001{%- from "isc_dhcp/map.jinja" import server with context %}
2
3{%- for host_name, host in server.host.iteritems() %}
4
5host {{ host_name }} {
6 hardware ethernet {{ host.mac }};
7 fixed-address {{ host.address }};
8 ddns-hostname "{{ host.hostname }}";
9}
10
11{%- endfor %}