blob: 3d9188454493e344af72312446be8335c18b2571 [file] [log] [blame]
Ales Komarek6d9bc2c2014-09-21 17:25:05 +02001{%- from "isc_dhcp/map.jinja" import server with context %}
2
Ales Komarek63c2db52014-09-15 09:26:22 +02003# Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf).
Ales Komarek6d9bc2c2014-09-21 17:25:05 +02004DHCPD_CONF=/etc/dhcp/dhcpd.conf
Ales Komarek63c2db52014-09-15 09:26:22 +02005
6# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
7#DHCPD_PID=/var/run/dhcpd.pid
8
Ales Komarek63c2db52014-09-15 09:26:22 +02009# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
10# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
Ales Komarek6d9bc2c2014-09-21 17:25:05 +020011INTERFACES="{{ server.interfaces|join(' ') }}"