diff options
author | Kim Alvefur <zash@zash.se> | 2014-03-22 12:02:11 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-03-22 12:02:11 +0100 |
commit | 335f485c89ad69d23cb800b6a012834fc0b2f4cf (patch) | |
tree | 9a9f2b027b67c6b28cfc2ac229a981a2babcc529 | |
parent | 4a315c3d58d76cfff63070aa1db169efe7d310dd (diff) | |
download | prosody-335f485c89ad69d23cb800b6a012834fc0b2f4cf.tar.gz prosody-335f485c89ad69d23cb800b6a012834fc0b2f4cf.zip |
prosodyctl: Show real error if certificate config file can't be opened
-rwxr-xr-x | prosodyctl | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -684,7 +684,12 @@ function cert_commands.config(arg) conf.distinguished_name[k] = nv ~= "." and nv or nil; end end - local conf_file = io.open(conf_filename, "w"); + local conf_file, err = io.open(conf_filename, "w"); + if not conf_file then + show_warning("Could not open OpenSSL config file for writing"); + show_warning(err); + os.exit(1); + end conf_file:write(conf:serialize()); conf_file:close(); print(""); |