mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl about: Split out libraries into a separate section
Currently libevent and libunbound would show up under Lua modules but they are not, so a separate section seems more appropriate.
This commit is contained in:
parent
37566b1cc3
commit
6e59b77502
1 changed files with 10 additions and 5 deletions
15
prosodyctl
15
prosodyctl
|
@ -438,7 +438,7 @@ function commands.about(arg)
|
||||||
print("");
|
print("");
|
||||||
print("# Lua module versions");
|
print("# Lua module versions");
|
||||||
local module_versions, longest_name = {}, 8;
|
local module_versions, longest_name = {}, 8;
|
||||||
local luaevent =dependencies.softreq"luaevent";
|
local library_versions = {};
|
||||||
dependencies.softreq"ssl";
|
dependencies.softreq"ssl";
|
||||||
dependencies.softreq"DBI";
|
dependencies.softreq"DBI";
|
||||||
local lunbound = dependencies.softreq"lunbound";
|
local lunbound = dependencies.softreq"lunbound";
|
||||||
|
@ -451,19 +451,24 @@ function commands.about(arg)
|
||||||
module_versions[name] = module._VERSION;
|
module_versions[name] = module._VERSION;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if luaevent then
|
|
||||||
module_versions["libevent"] = luaevent.core.libevent_version();
|
|
||||||
end
|
|
||||||
if lunbound then
|
if lunbound then
|
||||||
if not module_versions["lunbound"] then
|
if not module_versions["lunbound"] then
|
||||||
module_versions["lunbound"] = "<= 0.5";
|
module_versions["lunbound"] = "<= 0.5";
|
||||||
end
|
end
|
||||||
module_versions["libunbound"] = lunbound._LIBVER;
|
library_versions["libunbound"] = lunbound._LIBVER;
|
||||||
end
|
end
|
||||||
for name, version in sorted_pairs(module_versions) do
|
for name, version in sorted_pairs(module_versions) do
|
||||||
print(name..":"..string.rep(" ", longest_name-#name), version);
|
print(name..":"..string.rep(" ", longest_name-#name), version);
|
||||||
end
|
end
|
||||||
print("");
|
print("");
|
||||||
|
print("# library versions");
|
||||||
|
if require "net.server".event_base then
|
||||||
|
library_versions["libevent"] = require"luaevent".core.libevent_version();
|
||||||
|
end
|
||||||
|
for name, version in sorted_pairs(library_versions) do
|
||||||
|
print(name..":"..string.rep(" ", longest_name-#name), version);
|
||||||
|
end
|
||||||
|
print("");
|
||||||
end
|
end
|
||||||
|
|
||||||
function commands.reload(arg)
|
function commands.reload(arg)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue