diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-02 01:51:06 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-02 01:51:06 +0100 |
commit | f7bf94cd0379a9d11e59d6fcb90348d10635377e (patch) | |
tree | 133fe8d98a69df9d7b05e4df03ac91ba274a8368 | |
parent | 6210465091c3e82d1a6df362326ff3f92b7012fc (diff) | |
download | prosody-f7bf94cd0379a9d11e59d6fcb90348d10635377e.tar.gz prosody-f7bf94cd0379a9d11e59d6fcb90348d10635377e.zip |
prosodyctl: Use correct separator in chown call (fixes #1093)
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -868,7 +868,7 @@ local function copy(from, to, umask, owner, group) assert(input:close()); assert(output:close()); 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); end if old_umask then pposix.umask(old_umask); end |