From: Adolf Belka Date: Thu, 11 Apr 2024 15:01:02 +0000 (+0200) Subject: red: Fixes bug12763 X-Git-Tag: v2.29-core186~78 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9c28cd59c1b4f535382e5e4e7952d921af8cc03b;p=ipfire-2.x.git red: Fixes bug12763 - 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 Signed-off-by: Arne Fitzenreiter --- diff --git a/src/initscripts/networking/red b/src/initscripts/networking/red index beb665e5f4..51bf95a436 100644 --- a/src/initscripts/networking/red +++ b/src/initscripts/networking/red @@ -129,10 +129,10 @@ case "${1}" in touch /var/ipfire/red/active # Create route to default gateway - ip route add ${GATEWAY} dev ${DEVICE} + ip route add ${GATEWAY} dev ${DEVICE} >/dev/null 2>&1 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 if [ -d "/sys/class/net/${DEVICE}" ]; then