mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Verify that directory certs are written to exists
This commit is contained in:
parent
1dfc20f031
commit
31c0689963
1 changed files with 4 additions and 0 deletions
|
@ -831,6 +831,10 @@ function commands.cert(arg)
|
|||
openssl = require "util.openssl";
|
||||
lfs = require "lfs";
|
||||
local cert_dir_attrs = lfs.attributes(cert_basedir);
|
||||
if not cert_dir_attrs then
|
||||
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
|
||||
show_warning("The directory "..cert_basedir.." is not owned by the current user, won't be able to write files to it");
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue