blob: 186270bbac9457c0b8dd3667278875aea031fc56 [file] [log] [blame]
Ales Komarek63c2db52014-09-15 09:26:22 +02001# 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".
13INTERFACES="{% for interface in salt['pillar.get']('isc_dhcp:server:interfaces', []) %}{{ interface.name }}{% if not loop.last %} {% endif %}{% endfor %}"