diff options
-rw-r--r-- | src/etc/inc/unbound.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/etc/inc/unbound.inc b/src/etc/inc/unbound.inc index 5d006bf..4dfa615 100644 --- a/src/etc/inc/unbound.inc +++ b/src/etc/inc/unbound.inc @@ -625,6 +625,9 @@ function unbound_add_host_entries($cfgsubdir = "") { $added_ptr[$host['ipaddr']] = true; } $unbound_entries .= "local-data: \"{$host['fqdn']} {$type} {$host['ipaddr']}\"\n"; + if (isset($host['name'])) { + $unbound_entries .= "local-data: \"{$host['name']} {$type} {$host['ipaddr']}\"\n"; + } } // Write out entries |