From: Adolf Belka Date: Thu, 11 Apr 2024 15:01:04 +0000 (+0200) Subject: aws-setup: Fixes bug12763 X-Git-Tag: v2.29-core186~76 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb0de6531c441663477cf7e139f1bd5321630eef;p=ipfire-2.x.git aws-setup: 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/helper/aws-setup b/src/initscripts/helper/aws-setup index f14f4eb578..0bcf755720 100644 --- a/src/initscripts/helper/aws-setup +++ b/src/initscripts/helper/aws-setup @@ -278,7 +278,7 @@ case "${reason}" in ip addr add "${new_ip_address}/${new_subnet_mask}" dev "${interface}" # Add the default route - ip route add default via "${new_routers}" + ip route add default via "${new_routers}" >/dev/null 2>&1 # Setup DNS for domain_name_server in ${new_domain_name_servers}; do