mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl about: Report versions of luaunbound and libunbound
This commit is contained in:
parent
57253b7f87
commit
4a42f8042d
1 changed files with 7 additions and 0 deletions
|
@ -442,6 +442,7 @@ function commands.about(arg)
|
|||
local luaevent =dependencies.softreq"luaevent";
|
||||
dependencies.softreq"ssl";
|
||||
dependencies.softreq"DBI";
|
||||
local lunbound = dependencies.softreq"lunbound";
|
||||
for name, module in pairs(package.loaded) do
|
||||
if type(module) == "table" and rawget(module, "_VERSION")
|
||||
and name ~= "_G" and not name:match("%.") then
|
||||
|
@ -454,6 +455,12 @@ function commands.about(arg)
|
|||
if luaevent then
|
||||
module_versions["libevent"] = luaevent.core.libevent_version();
|
||||
end
|
||||
if lunbound then
|
||||
if not module_versions["lunbound"] then
|
||||
module_versions["lunbound"] = "<= 0.5";
|
||||
end
|
||||
module_versions["libunbound"] = lunbound._LIBVER;
|
||||
end
|
||||
local sorted_keys = array.collect(keys(module_versions)):sort();
|
||||
for _, name in ipairs(sorted_keys) do
|
||||
print(name..":"..string.rep(" ", longest_name-#name), module_versions[name]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue