core.certmanager: Turn soft dependency on LuaSec into a hard

The default network backend server_epoll already requires LuaSec so
Prosody won't even start without it, so we can get rid of these lines
here too.
This commit is contained in:
Kim Alvefur 2022-02-10 17:15:55 +01:00
parent 73d1bb1218
commit 406b90d31d
2 changed files with 4 additions and 14 deletions

View file

@ -85,7 +85,7 @@ local function check_dependencies()
{ "Debian/Ubuntu", "sudo apt install lua-sec" };
{ "luarocks", "luarocks install luasec" };
{ "Source", "https://github.com/brunoos/luasec" };
}, "SSL/TLS support will not be available", err);
}, nil, err);
end
local bit, err = softreq"util.bitcompat";