prosody: Added a stub implementation of core.componentmanager to the package.loaded...
[prosody.git] / prosody
diff --git a/prosody b/prosody
index ccd28ec6361825ef51065878fc51d5d872911ad8..7bc075d746a0de6890f12507a8aaa76fb9ea1b3c 100755 (executable)
--- a/prosody
+++ b/prosody
@@ -293,6 +293,10 @@ function load_secondary_libraries()
        require "core.usermanager"
        require "core.sessionmanager"
        require "core.stanza_router"
+       package.loaded['core.componentmanager'] = setmetatable({},{__index=function()
+               log("warn", "componentmanager is deprecated: %s", debug.traceback():match("\n[^\n]*\n[\s\t]*([^\n]*)"));
+               return function() end
+       end});
 
        require "net.http"