From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 9/9] oci-setup: Fixes bug12763 Date: Thu, 11 Apr 2024 17:01:08 +0200 Message-ID: <20240411150108.21573-9-adolf.belka@ipfire.org> In-Reply-To: <20240411150108.21573-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7639457405039195151==" List-Id: --===============7639457405039195151== 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 if an empty table is accessed. Fixes: Bug#12763 Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- src/initscripts/helper/oci-setup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/initscripts/helper/oci-setup b/src/initscripts/helper/oci-se= tup index 312014b74..727537343 100644 --- a/src/initscripts/helper/oci-setup +++ b/src/initscripts/helper/oci-setup @@ -304,8 +304,8 @@ case "${reason}" in ip addr add "${new_ip_address}/${new_subnet_mask}" dev "${interface}" =20 # Add the default route - ip route add "${new_routers}" dev "${interface}" - ip route add default via "${new_routers}" + ip route add "${new_routers}" dev "${interface}" >/dev/null 2>&1 + ip route add default via "${new_routers}" >/dev/null 2>&1 =20 # Setup DNS for domain_name_server in ${new_domain_name_servers}; do --=20 2.44.0 --===============7639457405039195151==--