Zack Williams | ba5549c | 2017-03-25 15:04:45 -0700 | [diff] [blame] | 1 | # Defaults for isc-dhcp-server initscript |
| 2 | # sourced by /etc/init.d/isc-dhcp-server |
| 3 | # installed at /etc/default/isc-dhcp-server by the maintainer scripts |
| 4 | |
| 5 | # |
| 6 | # This is a POSIX shell fragment |
| 7 | # |
| 8 | |
| 9 | # Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf). |
| 10 | #DHCPD_CONF=/etc/dhcp/dhcpd.conf |
| 11 | |
| 12 | # Path to dhcpd's PID file (default: /var/run/dhcpd.pid). |
| 13 | #DHCPD_PID=/var/run/dhcpd.pid |
| 14 | |
| 15 | # Additional options to start dhcpd with. |
| 16 | # Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead |
| 17 | #OPTIONS="" |
| 18 | |
| 19 | # On what interfaces should the DHCP server (dhcpd) serve DHCP requests? |
| 20 | # Separate multiple interfaces with spaces, e.g. "eth0 eth1". |
| 21 | INTERFACES="{{ dhcpd_subnets | map(attribute='interface') | join(' ') }}" |
| 22 | |