Comparison

prosodyctl @ 8012:e898c8fda986

util.pposix: Remove fallocate
author Kim Alvefur <zash@zash.se>
date Tue, 28 Feb 2017 13:26:05 +0100
parent 8010:49feb0da29e1
child 8015:ecb110f45c92
child 8067:91550b6f93d2
comparison
equal deleted inserted replaced
8011:f8ba814fe029 8012:e898c8fda986
133 dependencies.log_warnings(); 133 dependencies.log_warnings();
134 134
135 -- Switch away from root and into the prosody user -- 135 -- Switch away from root and into the prosody user --
136 local switched_user, current_uid; 136 local switched_user, current_uid;
137 137
138 local want_pposix_version = "0.3.7"; 138 local want_pposix_version = "0.4.0";
139 local ok, pposix = pcall(require, "util.pposix"); 139 local ok, pposix = pcall(require, "util.pposix");
140 140
141 if ok and pposix then 141 if ok and pposix then
142 if pposix._VERSION ~= want_pposix_version then print(string.format("Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version)); return; end 142 if pposix._VERSION ~= want_pposix_version then print(string.format("Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version)); return; end
143 current_uid = pposix.getuid(); 143 current_uid = pposix.getuid();