From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 3/9] red: Fixes bug12763 Date: Thu, 11 Apr 2024 17:01:02 +0200 Message-ID: <20240411150108.21573-3-adolf.belka@ipfire.org> In-Reply-To: <20240411150108.21573-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7666113857214816866==" List-Id: --===============7666113857214816866== 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/networking/red | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/initscripts/networking/red b/src/initscripts/networking/red index beb665e5f..51bf95a43 100644 --- a/src/initscripts/networking/red +++ b/src/initscripts/networking/red @@ -129,10 +129,10 @@ case "${1}" in touch /var/ipfire/red/active =20 # Create route to default gateway - ip route add ${GATEWAY} dev ${DEVICE} + ip route add ${GATEWAY} dev ${DEVICE} >/dev/null 2>&1 =20 boot_mesg "Setting up default gateway ${GATEWAY}..." - ip route add default via ${GATEWAY} dev ${DEVICE} + ip route add default via ${GATEWAY} dev ${DEVICE} >/dev/null 2>&1 evaluate_retval =20 if [ -d "/sys/class/net/${DEVICE}" ]; then --=20 2.44.0 --===============7666113857214816866==--