diff options
author | Kim Alvefur <zash@zash.se> | 2014-03-25 19:16:38 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-03-25 19:16:38 +0100 |
commit | 8c0d996be4f47b77a02668474d3d8a0a41bd0f98 (patch) | |
tree | 1dd9879238a7c2f688f02d2b61ed2877da2e9989 /prosodyctl | |
parent | 18f7ffec151b965af2745600f272db50a1c92ad2 (diff) | |
parent | e4ea0b094a43dd93fab253dff36efbe8aa3dc330 (diff) | |
download | prosody-8c0d996be4f47b77a02668474d3d8a0a41bd0f98.tar.gz prosody-8c0d996be4f47b77a02668474d3d8a0a41bd0f98.zip |
Merge 0.9->0.10
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -687,7 +687,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(""); |