From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 2/9] static-routes: Fixes bug12763 Date: Thu, 11 Apr 2024 17:01:01 +0200 Message-ID: <20240411150108.21573-2-adolf.belka@ipfire.org> In-Reply-To: <20240411150108.21573-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8526063034194149022==" List-Id: --===============8526063034194149022== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - 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" m= essages during boot. Fixes: Bug#12763 Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- 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/st= atic-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 =20 - ip rule add table static + ip rule add table static >/dev/null 2>&1 } =20 function create_all_routes() { local file=3D${1} shift =20 - # Remote all routes. + # Remove all routes. ip route flush table static >/dev/null 2>&1 =20 local status @@ -54,7 +54,7 @@ function create_all_routes() { continue fi =20 - ip route add ${network} via ${gateway} table static proto static + ip route add ${network} via ${gateway} table static proto static >/dev/nul= l 2>&1 done < ${file} } =20 --=20 2.44.0 --===============8526063034194149022==--