diff options
author | Kim Alvefur <zash@zash.se> | 2022-02-10 17:15:55 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-02-10 17:15:55 +0100 |
commit | 406b90d31deb1578a545401e0be190d11f2f6aba (patch) | |
tree | 5f3f51873b72c131576570d713aa19cfc2229fbe /util | |
parent | 73d1bb12184cd5bc91c5996ecc574149d9637d73 (diff) | |
download | prosody-406b90d31deb1578a545401e0be190d11f2f6aba.tar.gz prosody-406b90d31deb1578a545401e0be190d11f2f6aba.zip |
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.
Diffstat (limited to 'util')
-rw-r--r-- | util/dependencies.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua index 4cd45a05..d7836404 100644 --- a/util/dependencies.lua +++ b/util/dependencies.lua @@ -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"; |