mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.startup: Rename credentials path variable too
This commit is contained in:
parent
9db7569abc
commit
97884eb956
2 changed files with 3 additions and 3 deletions
|
@ -361,8 +361,8 @@ do
|
|||
env.FileLine = filereader(config_path, "*l");
|
||||
env.FileLines = linereader(config_path);
|
||||
|
||||
if _G.prosody.paths.secrets then
|
||||
env.Credential = filereader(_G.prosody.paths.secrets, "*a");
|
||||
if _G.prosody.paths.credentials then
|
||||
env.Credential = filereader(_G.prosody.paths.credentials, "*a");
|
||||
elseif _G.prosody.process_type == "prosody" then
|
||||
env.Credential = function() error("Credential() requires the $CREDENTIALS_DIRECTORY environment variable to be set", 2) end
|
||||
else
|
||||
|
|
|
@ -271,7 +271,7 @@ function startup.init_global_state()
|
|||
config = CFG_CONFIGDIR or ".";
|
||||
plugins = CFG_PLUGINDIR or "plugins";
|
||||
data = "data";
|
||||
secrets = os.getenv("CREDENTIALS_DIRECTORY");
|
||||
credentials = os.getenv("CREDENTIALS_DIRECTORY");
|
||||
};
|
||||
|
||||
prosody.arg = _G.arg;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue