aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-03-22 22:35:39 +0000
committerMatthew Wild <mwild1@gmail.com>2018-03-22 22:35:39 +0000
commit8858b071033633f2b06c7985b436fb2311dcb144 (patch)
tree54a80202b144f0439548a7e25b4050b7fea14262 /util
parent95737ca95023e1736527d485aa6ce0ae6ba71ffa (diff)
downloadprosody-8858b071033633f2b06c7985b436fb2311dcb144.tar.gz
prosody-8858b071033633f2b06c7985b436fb2311dcb144.zip
util.startup: Expose make_host() function
Diffstat (limited to 'util')
-rw-r--r--util/startup.lua21
1 files changed, 11 insertions, 10 deletions
diff --git a/util/startup.lua b/util/startup.lua
index d8f67d4e..40c328d5 100644
--- a/util/startup.lua
+++ b/util/startup.lua
@@ -461,24 +461,25 @@ function startup.check_unwriteable()
end
end
+function startup.make_host(hostname)
+ return {
+ type = "local",
+ events = prosody.events,
+ modules = {},
+ sessions = {},
+ users = require "core.usermanager".new_null_provider(hostname)
+ };
+end
+
function startup.make_dummy_hosts()
-- When running under prosodyctl, we don't want to
-- fully initialize the server, so we populate prosody.hosts
-- with just enough things for most code to work correctly
-- luacheck: ignore 122/hosts
prosody.core_post_stanza = function () end; -- TODO: mod_router!
- local function make_host(hostname)
- return {
- type = "local",
- events = prosody.events,
- modules = {},
- sessions = {},
- users = require "core.usermanager".new_null_provider(hostname)
- };
- end
for hostname in pairs(config.getconfig()) do
- hosts[hostname] = make_host(hostname);
+ hosts[hostname] = startup.make_host(hostname);
end
end