diff options
author | Matthew Wild <mwild1@gmail.com> | 2019-03-14 08:09:49 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2019-03-14 08:09:49 +0000 |
commit | feb226825d1fc7d8f26d68011716f72bf8ff438a (patch) | |
tree | 9e5c00d6251a916dfebab13fa1f1ae57a08e4202 /prosodyctl | |
parent | 2b590c273fa64e16fc828112c320d15a5883b35f (diff) | |
download | prosody-feb226825d1fc7d8f26d68011716f72bf8ff438a.tar.gz prosody-feb226825d1fc7d8f26d68011716f72bf8ff438a.zip |
prosodyctl about: Report network backend in use
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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"; |