mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Attempt to reload prosody after importing certificates
This commit is contained in:
parent
dbb0ad8e7e
commit
04abad10a7
1 changed files with 4 additions and 0 deletions
|
@ -897,6 +897,10 @@ function cert_commands.import(arg)
|
|||
end
|
||||
if imported[1] then
|
||||
show_message("Imported certificate and key for hosts "..table.concat(imported, ", "));
|
||||
local ok, err = prosodyctl.reload();
|
||||
if not ok and err ~= "not-running" then
|
||||
show_message(error_messages[err]);
|
||||
end
|
||||
else
|
||||
show_warning("No certificates imported :(");
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue