aboutsummaryrefslogtreecommitdiffstats
path: root/util/dependencies.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-06-27 14:25:57 +0200
committerKim Alvefur <zash@zash.se>2020-06-27 14:25:57 +0200
commit8ad24d50cb6283dcc9f89b2418b9b5f518af14b1 (patch)
tree60ac15351c0885abbeb37ed310b01187d59f9df5 /util/dependencies.lua
parent70ab78d9b13e1bc8f2b35ed718091b1c05ce206c (diff)
downloadprosody-8ad24d50cb6283dcc9f89b2418b9b5f518af14b1.tar.gz
prosody-8ad24d50cb6283dcc9f89b2418b9b5f518af14b1.zip
util.dependencies: Tone down lua-unbound dependency for now
At least until packages are available Wording from MattJ
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r--util/dependencies.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index 56a04736..d2f87661 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -100,10 +100,12 @@ local function check_dependencies()
local unbound, err = softreq"lunbound";
if not unbound then
+ --[[ TODO Re-enable once packages are available
missingdep("lua-unbound", {
{ "luarocks", "luarocks install luaunbound" };
{ "Source", "https://www.zash.se/luaunbound.html" };
}, "Old DNS resolver library will be used", err);
+ --]]
else
package.preload["net.adns"] = function ()
local ub = require "net.unbound";