Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dhcpd/files/service_config.Debian
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@

# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
{% if grains.osmajorrelease >= 9 %}
INTERFACESv4="{{ ' '.join(salt['pillar.get']('dhcpd:listen_interfaces', [])) }}"
{% else %}
INTERFACES="{{ ' '.join(salt['pillar.get']('dhcpd:listen_interfaces', [])) }}"
{% endif %}