prosodyctl about: Report network backend in use

This commit is contained in:
Matthew Wild 2019-03-14 08:09:49 +00:00
parent 09a662026a
commit fffb4ee43d

View file

@ -387,6 +387,10 @@ function commands.about(arg)
end
print("LuaRocks: ", luarocks_status);
print("");
print("# Network");
print("");
print("Backend: "..require "net.server".get_backend());
print("");
print("# Lua module versions");
local module_versions, longest_name = {}, 8;
local luaevent =dependencies.softreq"luaevent";