prosodyctl: Load LFS and util.openssl when actually needed (fixes unhelpful warnings if no LuaSec installed)

This commit is contained in:
Kim Alvefur 2013-01-08 13:33:35 +01:00
parent a6731c13d1
commit 2b0081486e

View file

@ -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