mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Rename variable for soft-require success to improve readability
This commit is contained in:
parent
1584f132bf
commit
28473a6452
1 changed files with 2 additions and 2 deletions
|
@ -136,9 +136,9 @@ dependencies.log_warnings();
|
|||
local switched_user, current_uid;
|
||||
|
||||
local want_pposix_version = "0.4.0";
|
||||
local ok, pposix = pcall(require, "util.pposix");
|
||||
local have_pposix, pposix = pcall(require, "util.pposix");
|
||||
|
||||
if ok and pposix then
|
||||
if have_pposix and pposix then
|
||||
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
|
||||
current_uid = pposix.getuid();
|
||||
local arg_root = arg[1] == "--root";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue