From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/9] static-routes: Fixes bug12763
Date: Thu, 11 Apr 2024 17:01:01 +0200 [thread overview]
Message-ID: <20240411150108.21573-2-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20240411150108.21573-1-adolf.belka@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1465 bytes --]
- This ensures that all ip route and ip rule commands are redirected to null if the output
is not used to feed into a variable.
- This will prevent any error messages related to empty iproute tables being displayed
during boot.
- Tested on my vm system and confirmed that the fix in ipsec-interfaces stops the "FIB
table does not exist" and "RTNETLINK answers: no such file or directory" messages during
boot.
Fixes: Bug#12763
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
src/initscripts/system/static-routes | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/initscripts/system/static-routes b/src/initscripts/system/static-routes
index 85785e9af..9aacc8db5 100644
--- a/src/initscripts/system/static-routes
+++ b/src/initscripts/system/static-routes
@@ -29,14 +29,14 @@ function init_table() {
return
fi
- ip rule add table static
+ ip rule add table static >/dev/null 2>&1
}
function create_all_routes() {
local file=${1}
shift
- # Remote all routes.
+ # Remove all routes.
ip route flush table static >/dev/null 2>&1
local status
@@ -54,7 +54,7 @@ function create_all_routes() {
continue
fi
- ip route add ${network} via ${gateway} table static proto static
+ ip route add ${network} via ${gateway} table static proto static >/dev/null 2>&1
done < ${file}
}
--
2.44.0
next prev parent reply other threads:[~2024-04-11 15:01 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: " Adolf Belka
2024-04-11 15:01 ` Adolf Belka [this message]
2024-04-11 15:01 ` [PATCH 3/9] red: " Adolf Belka
2024-04-11 15:01 ` [PATCH 4/9] ip-up: " Adolf Belka
2024-04-11 15:01 ` [PATCH 5/9] aws-setup: " Adolf Belka
2024-04-11 15:01 ` [PATCH 6/9] azure-setup: " Adolf Belka
2024-04-11 15:01 ` [PATCH 7/9] exoscale-setup: " Adolf Belka
2024-04-11 15:01 ` [PATCH 8/9] gcp-setup: " Adolf Belka
2024-04-11 15:01 ` [PATCH 9/9] oci-setup: " Adolf Belka
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=20240411150108.21573-2-adolf.belka@ipfire.org \
--to=adolf.belka@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