* [PATCH] unbound: Remove test to check if RED is up
@ 2019-11-26 12:59 Michael Tremer
0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2019-11-26 12:59 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1915 bytes --]
This has caused some trouble in many environments and
I think it makes sense to disable this for now until
we have reworked the whole DNS thing.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/initscripts/system/unbound | 22 ++--------------------
1 file changed, 2 insertions(+), 20 deletions(-)
diff --git a/src/initscripts/system/unbound b/src/initscripts/system/unbound
index 8eaf3734a..345b01bb5 100644
--- a/src/initscripts/system/unbound
+++ b/src/initscripts/system/unbound
@@ -48,22 +48,6 @@ read_name_servers() {
done 2>/dev/null | xargs echo
}
-check_red_has_carrier_and_ip() {
- # Interface configured ?
- [ ! -e "/var/ipfire/red/iface" ] && return 0;
-
- # Interface present ?
- [ ! -e "/sys/class/net/$(</var/ipfire/red/iface)" ] && return 0;
-
- # has carrier ?
- [ ! "$(</sys/class/net/$(</var/ipfire/red/iface)/carrier)" = "1" ] && return 0;
-
- # has ip ?
- [ "$(ip address show dev $(</var/ipfire/red/iface) | grep "inet")" = "" ] && return 0;
-
- return 1;
-}
-
config_header() {
echo "# This file is automatically generated and any changes"
echo "# will be overwritten. DO NOT EDIT!"
@@ -71,8 +55,7 @@ config_header() {
}
update_forwarders() {
- check_red_has_carrier_and_ip
- if [ "${USE_FORWARDERS}" = "1" -a "${?}" = "1" ]; then
+ if [ "${USE_FORWARDERS}" = "1" ]; then
local forwarders
local broken_forwarders
@@ -517,8 +500,7 @@ disable_dnssec() {
fix_time_if_dns_fail() {
# If DNS still not work try to init ntp with
# hardcoded ntp.ipfire.org (81.3.27.46)
- check_red_has_carrier_and_ip
- if [ -e "/var/ipfire/red/iface" -a "${?}" = "1" ]; then
+ if [ -e "/var/ipfire/red/iface" ]; then
host 0.ipfire.pool.ntp.org > /dev/null 2>&1
if [ "${?}" != "0" ]; then
boot_mesg "DNS still not functioning... Trying to sync time with ntp.ipfire.org (81.3.27.46)..."
--
2.20.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-11-26 12:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-26 12:59 [PATCH] unbound: Remove test to check if RED is up Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox