aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-12-27 00:42:57 +0100
committerKim Alvefur <zash@zash.se>2017-12-27 00:42:57 +0100
commit9526273a1bc133a4f34f9caec30a7f5583619547 (patch)
tree8b21e907d19f6ac68d599202ac56e066391ba4da /core
parent1e543ef1918cf5ca0b3aa1569074db05f78f1fc0 (diff)
downloadprosody-9526273a1bc133a4f34f9caec30a7f5583619547.tar.gz
prosody-9526273a1bc133a4f34f9caec30a7f5583619547.zip
moduleapi: Warn if a module being loaded as a dependency has been disabled
Diffstat (limited to 'core')
-rw-r--r--core/moduleapi.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index e39fd026..2eae35fc 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -161,6 +161,9 @@ function api:depends(name)
end
end);
end
+ if self:get_option_inherited_set("modules_disabled", {}):contains(name) then
+ self:log("warn", "Loading prerequisite mod_%s despite it being disabled", name);
+ end
local mod = modulemanager.get_module(self.host, name) or modulemanager.get_module("*", name);
if mod and mod.module.host == "*" and self.host ~= "*"
and modulemanager.module_has_method(mod, "add_host") then