mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Change ownership of certs to same as the cert base dir when running from a source checkout
This commit is contained in:
parent
d3d71d91bb
commit
2dd5ee9357
1 changed files with 4 additions and 1 deletions
|
@ -867,7 +867,10 @@ local function copy(from, to, umask, owner, group)
|
|||
end
|
||||
assert(input:close());
|
||||
assert(output:close());
|
||||
if owner and group then
|
||||
if not prosody.installed then
|
||||
-- FIXME this is possibly specific to GNU chown
|
||||
os.execute(("chown -c --reference=%s %s"):format(sh_esc(cert_basedir), sh_esc(to)));
|
||||
elseif owner and group then
|
||||
local ok = os.execute(("chown %s:%s %s"):format(sh_esc(owner), sh_esc(group), sh_esc(to)));
|
||||
assert(ok == true or ok == 0, "Failed to change ownership of "..to);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue