prosodyctl: Include libevent version in "about" output if luaevent is available

This commit is contained in:
Kim Alvefur 2016-03-07 12:13:22 +01:00
parent da4afcbab7
commit 1a1d74a1b2

View file

@ -590,6 +590,9 @@ function commands.about(arg)
module_versions[name] = module._VERSION;
end
end
if luaevent then
module_versions["libevent"] = luaevent.core.libevent_version();
end
local sorted_keys = array.collect(keys(module_versions)):sort();
for _, name in ipairs(array.collect(keys(module_versions)):sort()) do
print(name..":"..string.rep(" ", longest_name-#name), module_versions[name]);