mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.startup: Skip config readability check in migrator (thanks eTaurus)
This field is empty for reasons when invoked by prosody-migrator, which threw an error: > bad argument #1 to 'open' (string expected, got nil)
This commit is contained in:
parent
092875aaec
commit
c5de2a9d22
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ function startup.switch_user()
|
|||
if not prosody.switched_user then
|
||||
-- Boo!
|
||||
print("Warning: Couldn't switch to Prosody user/group '"..tostring(desired_user).."'/'"..tostring(desired_group).."': "..tostring(err));
|
||||
else
|
||||
elseif prosody.config_file then
|
||||
-- Make sure the Prosody user can read the config
|
||||
local conf, err, errno = io.open(prosody.config_file); --luacheck: ignore 211/errno
|
||||
if conf then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue