mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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;
|
hosts = prosody.hosts;
|
||||||
|
|
||||||
local function make_host(hostname)
|
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
|
end
|
||||||
|
|
||||||
for hostname, config in pairs(config.getconfig()) do
|
for hostname, config in pairs(config.getconfig()) do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue