mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
prosodyctl: check config: Report paths of loaded configuration files (fixed #1729)
This commit is contained in:
parent
a52c531dc5
commit
fdd5f22b8a
1 changed files with 7 additions and 0 deletions
|
@ -332,6 +332,13 @@ local function check(arg)
|
|||
end
|
||||
if not what or what == "config" then
|
||||
print("Checking config...");
|
||||
|
||||
if what == "config" then
|
||||
local files = configmanager.files();
|
||||
print(" The following configuration files have been loaded:");
|
||||
print(" - "..table.concat(files, "\n - "));
|
||||
end
|
||||
|
||||
local obsolete = set.new({ --> remove
|
||||
"archive_cleanup_interval",
|
||||
"cross_domain_bosh",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue