diff options
author | Warren Baker <warren@decoy.co.za> | 2014-04-28 22:36:48 +0200 |
---|---|---|
committer | Warren Baker <warren@decoy.co.za> | 2014-04-28 22:36:48 +0200 |
commit | 3f06e5383f1bef897b70daaae5305862d5755008 (patch) | |
tree | 5347466b359546a205f19c22075341cb690ae4eb | |
parent | 37d4cbf3be1937c9c5fd61ff914261a9fb737c57 (diff) | |
download | pfsense-3f06e5383f1bef897b70daaae5305862d5755008.zip pfsense-3f06e5383f1bef897b70daaae5305862d5755008.tar.gz |
make sure unbound is included here
-rw-r--r-- | etc/inc/system.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc index e16548d..9adfff1 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -324,8 +324,10 @@ function system_hosts_generate() { fwrite($fd, $hosts); fclose($fd); - if (isset($config['unbound']['enable'])) + if (isset($config['unbound']['enable'])) { + require_once("unbound.inc"); unbound_hosts_generate(); + } system_dhcpleases_configure(); |