mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Give hosts type = 'local'
This commit is contained in:
parent
c6eb530c0b
commit
e8daf372c9
1 changed files with 5 additions and 1 deletions
|
@ -168,7 +168,11 @@ local error_messages = setmetatable({
|
|||
hosts = prosody.hosts;
|
||||
|
||||
local function make_host(hostname)
|
||||
return { events = prosody.events, users = require "core.usermanager".new_null_provider(hostname) };
|
||||
return {
|
||||
type = "local",
|
||||
events = prosody.events,
|
||||
users = require "core.usermanager".new_null_provider(hostname)
|
||||
};
|
||||
end
|
||||
|
||||
for hostname, config in pairs(config.getconfig()) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue