mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Set umask to protect data files, bump pposix dep to 0.3.2
This commit is contained in:
parent
4558719f38
commit
1e1d8f62ac
1 changed files with 4 additions and 1 deletions
|
@ -66,7 +66,7 @@ require "util.datamanager".set_data_path(data_path);
|
|||
-- Switch away from root and into the prosody user --
|
||||
local switched_user, current_uid;
|
||||
|
||||
local want_pposix_version = "0.3.1";
|
||||
local want_pposix_version = "0.3.2";
|
||||
local ok, pposix = pcall(require, "util.pposix");
|
||||
|
||||
if ok and pposix then
|
||||
|
@ -89,6 +89,9 @@ if ok and pposix then
|
|||
print("Warning: Couldn't switch to Prosody user/group '"..tostring(desired_user).."'/'"..tostring(desired_group).."': "..tostring(err));
|
||||
end
|
||||
end
|
||||
|
||||
-- Set our umask to protect data files
|
||||
pposix.umask(config.get("*", "core", "umask") or "027");
|
||||
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 http://prosody.im/discuss");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue