mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Fix traceback with lfs < 1.6.2 and show warning
This commit is contained in:
parent
27d99dd43b
commit
c09bd4346b
1 changed files with 3 additions and 0 deletions
|
@ -947,6 +947,9 @@ function commands.cert(arg)
|
|||
if pposix.getuid() ~= cert_dir_attrs.uid then
|
||||
show_warning("The directory "..cert_basedir.." is not owned by the current user, won't be able to write files to it");
|
||||
return 1;
|
||||
elseif not cert_dir_attrs.permissions then -- COMPAT with LuaFilesystem < 1.6.2 (hey CentOS!)
|
||||
show_message("Unable to check permissions on "..cert_basedir.." (LuaFilesystem 1.6.2+ required)");
|
||||
show_message("Please confirm that Prosody (and only Prosody) can write to this directory)");
|
||||
elseif cert_dir_attrs.permissions:match("^%.w..%-..%-.$") then
|
||||
show_warning("The directory "..cert_basedir.." not only writable by its owner");
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue