Software /
code /
prosody
Comparison
util/dependencies.lua @ 7993:c654c92aad55
util.dependencies: Give APT command for installing lua-sec
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 21 Mar 2017 15:18:35 +0100 |
parent | 7875:3fbfd7210d78 |
child | 7999:980606856882 |
child | 8234:97b3ca502547 |
comparison
equal
deleted
inserted
replaced
7992:51396e0836cf | 7993:c654c92aad55 |
---|---|
91 | 91 |
92 local ssl = softreq "ssl" | 92 local ssl = softreq "ssl" |
93 | 93 |
94 if not ssl then | 94 if not ssl then |
95 missingdep("LuaSec", { | 95 missingdep("LuaSec", { |
96 ["Debian/Ubuntu"] = "http://prosody.im/download/start#debian_and_ubuntu"; | 96 ["Debian/Ubuntu"] = "sudo apt-get install lua-sec"; |
97 ["luarocks"] = "luarocks install luasec"; | 97 ["luarocks"] = "luarocks install luasec"; |
98 ["Source"] = "https://github.com/brunoos/luasec"; | 98 ["Source"] = "https://github.com/brunoos/luasec"; |
99 }, "SSL/TLS support will not be available"); | 99 }, "SSL/TLS support will not be available"); |
100 end | 100 end |
101 | 101 |