Ales Komarek | 6d9bc2c | 2014-09-21 17:25:05 +0200 | [diff] [blame] | 1 | {%- from "isc_dhcp/map.jinja" import server with context %} |
| 2 | |
Ales Komarek | 63c2db5 | 2014-09-15 09:26:22 +0200 | [diff] [blame] | 3 | # Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf). |
Ales Komarek | 6d9bc2c | 2014-09-21 17:25:05 +0200 | [diff] [blame] | 4 | DHCPD_CONF=/etc/dhcp/dhcpd.conf |
Ales Komarek | 63c2db5 | 2014-09-15 09:26:22 +0200 | [diff] [blame] | 5 | |
Ales Komarek | 0f2aa5f | 2014-09-21 18:01:37 +0200 | [diff] [blame] | 6 | |
Ales Komarek | 63c2db5 | 2014-09-15 09:26:22 +0200 | [diff] [blame] | 7 | # Path to dhcpd's PID file (default: /var/run/dhcpd.pid). |
| 8 | #DHCPD_PID=/var/run/dhcpd.pid |
| 9 | |
Ales Komarek | 63c2db5 | 2014-09-15 09:26:22 +0200 | [diff] [blame] | 10 | # On what interfaces should the DHCP server (dhcpd) serve DHCP requests? |
| 11 | # Separate multiple interfaces with spaces, e.g. "eth0 eth1". |
Ales Komarek | 0f2aa5f | 2014-09-21 18:01:37 +0200 | [diff] [blame] | 12 | INTERFACES="{% for interface in server.interfaces %}{{ interface.name }}{% if not loop.last %} {% endif %}{% endfor %}" |