aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-22 16:41:44 +0200
committerKim Alvefur <zash@zash.se>2017-04-22 16:41:44 +0200
commite8c521be3618820755fce4c9ef0dbd25e7dab17c (patch)
tree18f1aa1e4e89518b2f80a7b4e2ccb577810eb157
parent5862c92aa42f3066486d125a546f5bfc6d2763be (diff)
downloadprosody-e8c521be3618820755fce4c9ef0dbd25e7dab17c.tar.gz
prosody-e8c521be3618820755fce4c9ef0dbd25e7dab17c.zip
mod_posix: Use typed config API
-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 5a6cd0c2..bf8b5cc5 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 http://prosody.im/doc/root");
prosody.shutdown("Refusing to run as root");