aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_posix.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-24 14:19:49 +0200
committerKim Alvefur <zash@zash.se>2017-04-24 14:19:49 +0200
commit706849aa1ef9f5f2f6494d14d7de0ac9e1647190 (patch)
tree13ca49cac213b410c52092725470206f070d7450 /plugins/mod_posix.lua
parent708f82e198006129be93ea2d60504c30d200ee06 (diff)
parent04abad10a7f83c64a2bafdcb2888e9cad815f47d (diff)
downloadprosody-706849aa1ef9f5f2f6494d14d7de0ac9e1647190.tar.gz
prosody-706849aa1ef9f5f2f6494d14d7de0ac9e1647190.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_posix.lua')
-rw-r--r--plugins/mod_posix.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua
index e4c8ef31..3fc57afc 100644
--- a/plugins/mod_posix.lua
+++ b/plugins/mod_posix.lua
@@ -57,7 +57,7 @@ end);
if not prosody.start_time then -- server-starting
local suid = module:get_option("setuid");
if not suid or suid == 0 or suid == "root" then
- if pposix.getuid() == 0 and not module:get_option("run_as_root") then
+ if pposix.getuid() == 0 and not module:get_option_boolean("run_as_root") then
module:log("error", "Danger, Will Robinson! Prosody doesn't need to be run as root, so don't do it!");
module:log("error", "For more information on running Prosody as root, see https://prosody.im/doc/root");
prosody.shutdown("Refusing to run as root");