mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
d03099c7cc
2 changed files with 4 additions and 1 deletions
|
@ -84,6 +84,9 @@ function activate(host, host_config)
|
||||||
send = host_send;
|
send = host_send;
|
||||||
modules = {};
|
modules = {};
|
||||||
};
|
};
|
||||||
|
function host_session:close(reason)
|
||||||
|
log("debug", "Attempt to close host session %s with reason: %s", self.host, reason);
|
||||||
|
end
|
||||||
setmetatable(host_session, host_mt);
|
setmetatable(host_session, host_mt);
|
||||||
if not host_config.component_module then -- host
|
if not host_config.component_module then -- host
|
||||||
host_session.type = "local";
|
host_session.type = "local";
|
||||||
|
|
|
@ -866,7 +866,7 @@ local function copy(from, to, umask, owner, group)
|
||||||
assert(input:close());
|
assert(input:close());
|
||||||
assert(output:close());
|
assert(output:close());
|
||||||
if owner and group then
|
if owner and group then
|
||||||
local ok = os.execute(("chown %s.%s %s"):format(sh_esc(owner), sh_esc(group), sh_esc(to)));
|
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);
|
assert(ok == true or ok == 0, "Failed to change ownership of "..to);
|
||||||
end
|
end
|
||||||
if old_umask then pposix.umask(old_umask); end
|
if old_umask then pposix.umask(old_umask); end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue