mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.prosodyctl.cert: Ensure old cert is moved out of the way
This should make it visible if the move fails
This commit is contained in:
parent
65386e9810
commit
f7d0caa5ac
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ local function copy(from, to, umask, owner, group)
|
||||||
local attrs = lfs.attributes(to);
|
local attrs = lfs.attributes(to);
|
||||||
if attrs then -- Move old file out of the way
|
if attrs then -- Move old file out of the way
|
||||||
local backup = to..".bkp~"..os.date("%FT%T", attrs.change);
|
local backup = to..".bkp~"..os.date("%FT%T", attrs.change);
|
||||||
os.rename(to, backup);
|
assert(os.rename(to, backup));
|
||||||
end
|
end
|
||||||
-- FIXME friendlier error handling, maybe move above backup back?
|
-- FIXME friendlier error handling, maybe move above backup back?
|
||||||
local input = assert(io.open(from));
|
local input = assert(io.open(from));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue