aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_posix.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-08-28 14:31:48 +0100
committerMatthew Wild <mwild1@gmail.com>2010-08-28 14:31:48 +0100
commitb465aa90b9329425ed4cf79895f86c320e9af11a (patch)
treee2bf8f4855681272acea80a2b32645462de20a09 /plugins/mod_posix.lua
parente724cea3952f3101b818f4d94d3584d237c74b78 (diff)
downloadprosody-b465aa90b9329425ed4cf79895f86c320e9af11a.tar.gz
prosody-b465aa90b9329425ed4cf79895f86c320e9af11a.zip
util.pposix, prosodyctl, mod_posix: Add initgroups() function, and bump module version. prosodyctl inits groups with the groups of prosody_user. (thanks dbb)
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 77b2f2a4..38195b13 100644
--- a/plugins/mod_posix.lua
+++ b/plugins/mod_posix.lua
@@ -7,7 +7,7 @@
--
-local want_pposix_version = "0.3.3";
+local want_pposix_version = "0.3.4";
local pposix = assert(require "util.pposix");
if pposix._VERSION ~= want_pposix_version then module:log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end