Add variable for dhcpd(8) server options

This commit is contained in:
Maciej Delmanowski 2015-03-29 00:25:58 +01:00
parent 80f1f88786
commit 3c4a1e80bb
2 changed files with 14 additions and 4 deletions

View File

@ -50,9 +50,19 @@ dhcpd_relay_interfaces: []
dhcpd_relay_options: '-4'
# ----------------------------------------
# Global ISC DHCP Server configuration
# ----------------------------------------
# ---------------------------------
# ISC DHCP Server configuration
# ---------------------------------
# .. envvar:: dhcpd_server_options
#
# dhcpd(8) options
dhcpd_server_options: '-4'
# ---------------------------
# DHCP main configuration
# ---------------------------
# .. envvar:: dhcpd_authoritative
#

View File

@ -16,7 +16,7 @@
# Additional options to start dhcpd with.
# Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead
#OPTIONS=""
OPTIONS="{{ dhcpd_server_options }}"
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".