blob: 0a75c0b2efd013c373d22326caaf3e7fa5f97f1a [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
Ales Komarek0f2aa5f2014-09-21 18:01:37 +02006
Ales Komarek63c2db52014-09-15 09:26:22 +02007# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
8#DHCPD_PID=/var/run/dhcpd.pid
9
Ales Komarek63c2db52014-09-15 09:26:22 +020010# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
11# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
Ales Komarek0f2aa5f2014-09-21 18:01:37 +020012INTERFACES="{% for interface in server.interfaces %}{{ interface.name }}{% if not loop.last %} {% endif %}{% endfor %}"