From f7d0caa5ac8bc4d95bede90b42dd8f794429fc8f Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 30 Aug 2024 17:41:40 +0200 Subject: util.prosodyctl.cert: Ensure old cert is moved out of the way This should make it visible if the move fails --- util/prosodyctl/cert.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/prosodyctl') diff --git a/util/prosodyctl/cert.lua b/util/prosodyctl/cert.lua index 02c81585..abd2e1d6 100644 --- a/util/prosodyctl/cert.lua +++ b/util/prosodyctl/cert.lua @@ -163,7 +163,7 @@ local function copy(from, to, umask, owner, group) local attrs = lfs.attributes(to); if attrs then -- Move old file out of the way local backup = to..".bkp~"..os.date("%FT%T", attrs.change); - os.rename(to, backup); + assert(os.rename(to, backup)); end -- FIXME friendlier error handling, maybe move above backup back? local input = assert(io.open(from)); -- cgit v1.2.3