mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Allow cert dir to not be owned by root (fixes #1075)
This commit is contained in:
parent
2a573e5c5e
commit
d3d71d91bb
1 changed files with 2 additions and 1 deletions
|
@ -944,7 +944,8 @@ function commands.cert(arg)
|
|||
show_warning("The directory "..cert_basedir.." does not exist");
|
||||
return 1; -- TODO Should we create it?
|
||||
end
|
||||
if pposix.getuid() ~= cert_dir_attrs.uid then
|
||||
local uid = pposix.getuid();
|
||||
if uid ~= 0 and uid ~= 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!)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue