tag 613734 patch thanks Attached are the patch files to address the request from git clone made today.
Thanks.
diff --git debian/isc-dhcp-server.init.d debian/isc-dhcp-server.init.d index 83a30da..7692209 100644 --- debian/isc-dhcp-server.init.d +++ debian/isc-dhcp-server.init.d @@ -66,7 +66,7 @@ case "$1" in test_config log_daemon_msg "Starting $DESC" "$NAME" start-stop-daemon --start --quiet --pidfile $DHCPDPID \ - --exec /usr/sbin/dhcpd -- -q $INTERFACES + --exec /usr/sbin/dhcpd -- -q $INTERFACES $DHCP_OPTIONS sleep 2 if check_status -q; then
diff --git debian/isc-dhcp-server.postinst debian/isc-dhcp-server.postinst index 301a174..8f84c70 100644 --- debian/isc-dhcp-server.postinst +++ debian/isc-dhcp-server.postinst @@ -45,6 +45,9 @@ umask 022 # On what interfaces should the DHCP server (dhcpd) serve DHCP requests? # Separate multiple interfaces with spaces, e.g. "eth0 eth1". INTERFACES="" + +# Paramater options to pass to DHCP server. +DHCP_OPTIONS="" EOFMAGICNUMBER1234 }