Diff

plugins/mod_posix.lua @ 3471:482275e38224

util.pposix, prosodyctl, mod_posix: Add initgroups() function, and bump module version. prosodyctl inits groups with the groups of prosody_user. (thanks dbb)
author Matthew Wild <mwild1@gmail.com>
date Sat, 28 Aug 2010 14:31:48 +0100
parent 3341:a8a3e662fea7
child 3481:72d3c8029178
line wrap: on
line diff
--- a/plugins/mod_posix.lua	Fri Aug 27 18:33:45 2010 +0100
+++ b/plugins/mod_posix.lua	Sat Aug 28 14:31:48 2010 +0100
@@ -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