public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 3/3] unbound-dhcp-leases-bridge: Make comparison work if old file does not exist
Date: Fri, 26 Apr 2024 15:09:19 +0000	[thread overview]
Message-ID: <20240426150919.3766772-3-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20240426150919.3766772-1-michael.tremer@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1407 bytes --]

This patch catches any errors if the file did not previously exist and
therefore skips the comparison.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/unbound/unbound-dhcp-leases-bridge | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/config/unbound/unbound-dhcp-leases-bridge b/config/unbound/unbound-dhcp-leases-bridge
index 80c8267e8..7f89f620a 100644
--- a/config/unbound/unbound-dhcp-leases-bridge
+++ b/config/unbound/unbound-dhcp-leases-bridge
@@ -535,17 +535,22 @@ class UnboundConfigWriter(object):
 			f.flush()
 
 			# Compare if the new leases file has changed from the previous version
-			if filecmp.cmp(f.name, self.path, shallow=False):
-				log.debug("The generated leases file has not changed")
+			try:
+				if filecmp.cmp(f.name, self.path, shallow=False):
+					log.debug("The generated leases file has not changed")
 
-				return False
+					return False
+
+				# Remove the old file
+				os.unlink(self.path)
+
+			# If the previous file did not exist, just keep falling through
+			except FileNotFoundError:
+				pass
 
 			# Make file readable for everyone
 			os.fchmod(f.fileno(), stat.S_IRUSR|stat.S_IWUSR|stat.S_IRGRP|stat.S_IROTH)
 
-			# Remove the old file
-			os.unlink(self.path)
-
 			# Move the file to its destination
 			os.link(f.name, self.path)
 
-- 
2.39.2


      parent reply	other threads:[~2024-04-26 15:09 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-26 15:09 [PATCH 1/3] unbound-dhcp-leases-bridge: Implement atomic file replacement Michael Tremer
2024-04-26 15:09 ` [PATCH 2/3] unbound-dhcp-leases-bridge: Only reload if leases have actually changed Michael Tremer
2024-04-26 15:09 ` Michael Tremer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240426150919.3766772-3-michael.tremer@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox