Software /
code /
prosody
Diff
plugins/mod_posix.lua @ 2440:11e3d16a128f
mod_posix: Set umask to 'umask' from the config, or 027
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 10 Jan 2010 22:15:15 +0000 |
parent | 2438:819ba949c7bc |
child | 2445:9806fac994f8 |
line wrap: on
line diff
--- a/plugins/mod_posix.lua Sun Jan 10 22:14:44 2010 +0000 +++ b/plugins/mod_posix.lua Sun Jan 10 22:15:15 2010 +0000 @@ -23,6 +23,9 @@ module.host = "*"; -- we're a global module +local umask = module:get_option("umask") or "027"; +pposix.umask(umask); + -- Allow switching away from root, some people like strange ports. module:add_event_hook("server-started", function () local uid = module:get_option("setuid");