prosodyctl: Return non-zero exit code from cert import if no certificates imported

This commit is contained in:
Kim Alvefur 2017-04-22 19:12:04 +02:00
parent eae8bd26c2
commit 934e6627ec

View file

@ -896,6 +896,9 @@ function cert_commands.import(arg)
end
if imported[1] then
show_message("Imported certificate and key for hosts "..table.concat(imported, ", "));
else
show_warning("No certificates imported :(");
return 1;
end
end