Commit 5aac90e8 authored by Franco Fichtner's avatar Franco Fichtner

Merge pull request #625 from 8191/fix_unbound-regdhcp

unbound: Fix "register DHCP leases in DNS" config option
parents 7c1a2858 4f116228
......@@ -557,6 +557,7 @@ function unbound_add_host_entries() {
}
// Handle DHCPLeases added host entries
if (isset($config['unbound']['regdhcp'])) {
$dhcplcfg = read_hosts();
$host_entries = "";
if (is_array($dhcplcfg)) {
......@@ -570,6 +571,7 @@ function unbound_add_host_entries() {
}
$unbound_entries .= $host_entries;
}
}
// Write out entries
bootstrap_unbound_root();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment