# HG changeset patch # User Matthew Wild # Date 1521755236 0 # Node ID a05d36075c6ae4ffdef223a1aed66b8c725076f4 # Parent 57780ba1938f23027741d3631a69f9acbb89f232 util.startup: Fix variable usage [luacheck] diff -r 57780ba1938f -r a05d36075c6a util/startup.lua --- a/util/startup.lua Thu Mar 22 21:46:55 2018 +0000 +++ b/util/startup.lua Thu Mar 22 21:47:16 2018 +0000 @@ -398,7 +398,7 @@ print("Warning: Couldn't switch to Prosody user/group '"..tostring(desired_user).."'/'"..tostring(desired_group).."': "..tostring(err)); else -- Make sure the Prosody user can read the config - local conf, err, errno = io.open(ENV_CONFIG); + local conf, err, errno = io.open(prosody.config_file); if conf then conf:close(); else @@ -412,8 +412,8 @@ -- Set our umask to protect data files pposix.umask(config.get("*", "umask") or "027"); - pposix.setenv("HOME", data_path); - pposix.setenv("PROSODY_CONFIG", ENV_CONFIG); + pposix.setenv("HOME", prosody.paths.data); + pposix.setenv("PROSODY_CONFIG", prosody.config_file); else print("Error: Unable to load pposix module. Check that Prosody is installed correctly.") print("For more help send the below error to us through https://prosody.im/discuss");