prosody: Store the config file name so the same file can be used when reloading
authorKim Alvefur <zash@zash.se>
Fri, 13 Dec 2013 09:25:40 +0000 (10:25 +0100)
committerKim Alvefur <zash@zash.se>
Fri, 13 Dec 2013 09:25:40 +0000 (10:25 +0100)
prosody

diff --git a/prosody b/prosody
index 9a88eac0b227e65406608276a3f4e861fe78ef94..ee2baca500062bb3b5bf293ce1b65810b9d9cbbe 100755 (executable)
--- a/prosody
+++ b/prosody
@@ -86,6 +86,7 @@ function read_config()
                        break;
                end
        end
+       prosody.config_file = filename
        local ok, level, err = config.load(filename);
        if not ok then
                print("\n");
@@ -240,7 +241,7 @@ function init_global_state()
        function prosody.reload_config()
                log("info", "Reloading configuration file");
                prosody.events.fire_event("reloading-config");
-               local ok, level, err = config.load((rawget(_G, "CFG_CONFIGDIR") or ".").."/prosody.cfg.lua");
+               local ok, level, err = config.load(prosody.config_file);
                if not ok then
                        if level == "parser" then
                                log("error", "There was an error parsing the configuration file: %s", tostring(err));