Comparison

util/dependencies.lua @ 12331:49739369dcad

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.
author Kim Alvefur <zash@zash.se>
date Thu, 10 Feb 2022 17:15:55 +0100
parent 12286:ad88732eea51
child 12569:b5d9f1829b15
comparison
equal deleted inserted replaced
12330:38b5b05407be 12331:49739369dcad
83 if not ssl then 83 if not ssl then
84 missingdep("LuaSec", { 84 missingdep("LuaSec", {
85 { "Debian/Ubuntu", "sudo apt install lua-sec" }; 85 { "Debian/Ubuntu", "sudo apt install lua-sec" };
86 { "luarocks", "luarocks install luasec" }; 86 { "luarocks", "luarocks install luasec" };
87 { "Source", "https://github.com/brunoos/luasec" }; 87 { "Source", "https://github.com/brunoos/luasec" };
88 }, "SSL/TLS support will not be available", err); 88 }, nil, err);
89 end 89 end
90 90
91 local bit, err = softreq"util.bitcompat"; 91 local bit, err = softreq"util.bitcompat";
92 92
93 if not bit then 93 if not bit then