Diff

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
line wrap: on
line diff
--- a/util/dependencies.lua	Sat Dec 25 16:23:40 2021 +0100
+++ b/util/dependencies.lua	Thu Feb 10 17:15:55 2022 +0100
@@ -85,7 +85,7 @@
 				{ "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";