prosodyctl: check certs: Update messages to account for 'ssl' option maybe not existing

This commit is contained in:
Kim Alvefur 2016-02-28 18:23:24 +01:00
parent 32f24c84a1
commit 0c30b8a273

View file

@ -1220,10 +1220,10 @@ function commands.check(arg)
print(" Error: "..err);
cert_ok = false
elseif not ssl_config.certificate then
print(" No 'certificate' set in ssl option for "..host)
print(" No 'certificate' found for "..host)
cert_ok = false
elseif not ssl_config.key then
print(" No 'key' set in ssl option for "..host)
print(" No 'key' found for for "..host)
cert_ok = false
else
local key, err = io.open(ssl_config.key); -- Permissions check only