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:
Kim Alvefur 2024-08-30 17:41:40 +02:00
parent 65386e9810
commit f7d0caa5ac

View file

@ -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));