mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Load LFS and util.openssl when actually needed (fixes unhelpful warnings if no LuaSec installed)
This commit is contained in:
parent
a6731c13d1
commit
2b0081486e
1 changed files with 4 additions and 2 deletions
|
@ -639,8 +639,8 @@ function commands.unregister(arg)
|
|||
return 1;
|
||||
end
|
||||
|
||||
local openssl = require "util.openssl";
|
||||
local lfs = require "lfs";
|
||||
local openssl;
|
||||
local lfs;
|
||||
|
||||
local cert_commands = {};
|
||||
|
||||
|
@ -744,6 +744,8 @@ end
|
|||
|
||||
function commands.cert(arg)
|
||||
if #arg >= 1 and arg[1] ~= "--help" then
|
||||
openssl = require "util.openssl";
|
||||
lfs = require "lfs";
|
||||
local subcmd = table.remove(arg, 1);
|
||||
if type(cert_commands[subcmd]) == "function" then
|
||||
if not arg[1] then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue