diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-08-28 14:31:48 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-08-28 14:31:48 +0100 |
commit | b465aa90b9329425ed4cf79895f86c320e9af11a (patch) | |
tree | e2bf8f4855681272acea80a2b32645462de20a09 /plugins/mod_posix.lua | |
parent | e724cea3952f3101b818f4d94d3584d237c74b78 (diff) | |
download | prosody-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.lua | 2 |
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 |