# HG changeset patch # User Matthew Wild # Date 1263161715 0 # Node ID 11e3d16a128f8e4456e04552792ce7c7fa7dcb8e # Parent 511ba389147a4b8137570be79b581fbd69bddac2 mod_posix: Set umask to 'umask' from the config, or 027 diff -r 511ba389147a -r 11e3d16a128f plugins/mod_posix.lua --- 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");