util.startup: Rename credentials path variable too

This commit is contained in:
Kim Alvefur 2025-01-18 13:29:59 +01:00
parent 9db7569abc
commit 97884eb956
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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;