Merge 0.9->0.10
[prosody.git] / prosodyctl
index cf2ab74df253f1c850d9597acebc82ead6f82945..c3adad4dcffb8b9a1b4fbb0a4e28a13391afdb49 100755 (executable)
@@ -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("");