mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: Return non-zero exit code from cert import if no certificates imported
This commit is contained in:
parent
eae8bd26c2
commit
934e6627ec
1 changed files with 3 additions and 0 deletions
|
@ -896,6 +896,9 @@ function cert_commands.import(arg)
|
||||||
end
|
end
|
||||||
if imported[1] then
|
if imported[1] then
|
||||||
show_message("Imported certificate and key for hosts "..table.concat(imported, ", "));
|
show_message("Imported certificate and key for hosts "..table.concat(imported, ", "));
|
||||||
|
else
|
||||||
|
show_warning("No certificates imported :(");
|
||||||
|
return 1;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue