public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] unbound: fix dns working check
@ 2022-02-19  8:22 Arne Fitzenreiter
  2022-02-19  9:42 ` Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Arne Fitzenreiter @ 2022-02-19  8:22 UTC (permalink / raw)
  To: development

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

pool.ipfire.org cannot resolved. Now try both default dns
servers. If one works dns is working.

Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
---
 src/initscripts/system/unbound | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/initscripts/system/unbound b/src/initscripts/system/unbound
index 1b42ac720..b959520a1 100644
--- a/src/initscripts/system/unbound
+++ b/src/initscripts/system/unbound
@@ -267,7 +267,8 @@ get_memory_amount() {
 
 fix_time_if_dns_fails() {
 	# If DNS is working, everything is fine
-	if resolve "ipfire.pool.ntp.org" &>/dev/null; then
+	if resolve "0.ipfire.pool.ntp.org" &>/dev/null || \
+	   resolve "1.ipfire.pool.ntp.org" &>/dev/null ; then
 		return 0
 	fi
 
-- 
2.34.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-19  9:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-19  8:22 [PATCH] unbound: fix dns working check Arne Fitzenreiter
2022-02-19  9:42 ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox