mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: check certs: Update messages to account for 'ssl' option maybe not existing
This commit is contained in:
parent
32f24c84a1
commit
0c30b8a273
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue