Ales Komarek | 63c2db5 | 2014-09-15 09:26:22 +0200 | [diff] [blame^] | 1 | # Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf). |
| 2 | #DHCPD_CONF=/etc/dhcp/dhcpd.conf |
| 3 | |
| 4 | # Path to dhcpd's PID file (default: /var/run/dhcpd.pid). |
| 5 | #DHCPD_PID=/var/run/dhcpd.pid |
| 6 | |
| 7 | # Additional options to start dhcpd with. |
| 8 | # Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead |
| 9 | #OPTIONS="" |
| 10 | |
| 11 | # On what interfaces should the DHCP server (dhcpd) serve DHCP requests? |
| 12 | # Separate multiple interfaces with spaces, e.g. "eth0 eth1". |
| 13 | INTERFACES="{% for interface in salt['pillar.get']('isc_dhcp:server:interfaces', []) %}{{ interface.name }}{% if not loop.last %} {% endif %}{% endfor %}" |