mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: Report OpenSSL version
This commit is contained in:
parent
654fd45546
commit
8164b92989
1 changed files with 4 additions and 0 deletions
|
@ -467,6 +467,7 @@ function commands.about(arg)
|
||||||
};
|
};
|
||||||
local lunbound = dependencies.softreq"lunbound";
|
local lunbound = dependencies.softreq"lunbound";
|
||||||
local lxp = dependencies.softreq"lxp";
|
local lxp = dependencies.softreq"lxp";
|
||||||
|
local hashes = dependencies.softreq"util.hashes";
|
||||||
for name, module in pairs(package.loaded) do
|
for name, module in pairs(package.loaded) do
|
||||||
if type(module) == "table" and rawget(module, "_VERSION")
|
if type(module) == "table" and rawget(module, "_VERSION")
|
||||||
and name ~= "_G" and not name:match("%.") then
|
and name ~= "_G" and not name:match("%.") then
|
||||||
|
@ -490,6 +491,9 @@ function commands.about(arg)
|
||||||
if lxp then
|
if lxp then
|
||||||
library_versions["libexpat"] = lxp._EXPAT_VERSION;
|
library_versions["libexpat"] = lxp._EXPAT_VERSION;
|
||||||
end
|
end
|
||||||
|
if hashes then
|
||||||
|
library_versions["libcrypto"] = hashes._LIBCRYPTO_VERSION;
|
||||||
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue