From 60e7583c9f6f93928b5d7edca190a793d272293e Mon Sep 17 00:00:00 2001 From: Tobias Markmann Date: Sat, 15 Aug 2009 12:30:43 +0200 Subject: Shutdown prosody if changing user or group fails. --- plugins/mod_posix.lua | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'plugins') diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index 0184ef36..af4cdb16 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -29,12 +29,22 @@ module:add_event_hook("server-started", function () local uid = config_get("*", "core", "setuid"); local gid = config_get("*", "core", "setgid"); if gid then - pposix.setgid(gid); - module:log("debug", "Change group to "..gid.."."); + local success, msg = pposix.setgid(gid); + if success then + module:log("debug", "Changed group to "..gid.." successfully."); + else + module:log("error", "Failed to change group to "..gid..". Error: "..msg); + prosody.shutdown("Failed to change group to "..gid); + end end if uid then - pposix.setuid(uid); - module:log("debug", "Change user to "..uid.."."); + local success, msg = pposix.setuid(uid); + if success then + module:log("debug", "Changed user to "..uid.." successfully."); + else + module:log("error", "Failed to change user to "..uid..". Error: "..msg); + prosody.shutdown("Failed to change user to "..uid); + end end end); -- cgit v1.2.3