* [PATCH 2/9] static-routes: Fixes bug12763
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Adolf Belka
@ 2024-04-11 15:01 ` Adolf Belka
2024-04-11 15:01 ` [PATCH 3/9] red: " Adolf Belka
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Adolf Belka @ 2024-04-11 15:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1465 bytes --]
- 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" messages during
boot.
Fixes: Bug#12763
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
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/static-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
- ip rule add table static
+ ip rule add table static >/dev/null 2>&1
}
function create_all_routes() {
local file=${1}
shift
- # Remote all routes.
+ # Remove all routes.
ip route flush table static >/dev/null 2>&1
local status
@@ -54,7 +54,7 @@ function create_all_routes() {
continue
fi
- ip route add ${network} via ${gateway} table static proto static
+ ip route add ${network} via ${gateway} table static proto static >/dev/null 2>&1
done < ${file}
}
--
2.44.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 3/9] red: Fixes bug12763
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Adolf Belka
2024-04-11 15:01 ` [PATCH 2/9] static-routes: " Adolf Belka
@ 2024-04-11 15:01 ` Adolf Belka
2024-04-11 15:01 ` [PATCH 4/9] ip-up: " Adolf Belka
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Adolf Belka @ 2024-04-11 15:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1172 bytes --]
- 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 <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
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
# 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
--
2.44.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 4/9] ip-up: Fixes bug12763
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Adolf Belka
2024-04-11 15:01 ` [PATCH 2/9] static-routes: " Adolf Belka
2024-04-11 15:01 ` [PATCH 3/9] red: " Adolf Belka
@ 2024-04-11 15:01 ` Adolf Belka
2024-04-11 15:01 ` [PATCH 5/9] aws-setup: " Adolf Belka
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Adolf Belka @ 2024-04-11 15:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1020 bytes --]
- 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 <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
src/ppp/ip-up | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ppp/ip-up b/src/ppp/ip-up
index 2e636e72d..5f4ee7726 100644
--- a/src/ppp/ip-up
+++ b/src/ppp/ip-up
@@ -33,7 +33,7 @@ echo -n "$4" > /var/ipfire/red/local-ipaddress
echo -n "$5" > /var/ipfire/red/remote-ipaddress
touch /var/ipfire/red/active
-/sbin/ip route replace default via ${IPREMOTE} dev ppp0
+/sbin/ip route replace default via ${IPREMOTE} dev ppp0 >/dev/null 2>&1
run_subdir ${rc_base}/init.d/networking/red.up/
#Check if gateway has answerd to ping, if not replace with ping.ipfire.org
--
2.44.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 5/9] aws-setup: Fixes bug12763
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Adolf Belka
` (2 preceding siblings ...)
2024-04-11 15:01 ` [PATCH 4/9] ip-up: " Adolf Belka
@ 2024-04-11 15:01 ` Adolf Belka
2024-04-11 15:01 ` [PATCH 6/9] azure-setup: " Adolf Belka
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Adolf Belka @ 2024-04-11 15:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1037 bytes --]
- 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 <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
src/initscripts/helper/aws-setup | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/initscripts/helper/aws-setup b/src/initscripts/helper/aws-setup
index f14f4eb57..0bcf75572 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
--
2.44.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 6/9] azure-setup: Fixes bug12763
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Adolf Belka
` (3 preceding siblings ...)
2024-04-11 15:01 ` [PATCH 5/9] aws-setup: " Adolf Belka
@ 2024-04-11 15:01 ` Adolf Belka
2024-04-11 15:01 ` [PATCH 7/9] exoscale-setup: " Adolf Belka
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Adolf Belka @ 2024-04-11 15:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1047 bytes --]
- 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 <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
src/initscripts/helper/azure-setup | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/initscripts/helper/azure-setup b/src/initscripts/helper/azure-setup
index 7a4422a35..eff963a4b 100644
--- a/src/initscripts/helper/azure-setup
+++ b/src/initscripts/helper/azure-setup
@@ -298,7 +298,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
--
2.44.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 7/9] exoscale-setup: Fixes bug12763
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Adolf Belka
` (4 preceding siblings ...)
2024-04-11 15:01 ` [PATCH 6/9] azure-setup: " Adolf Belka
@ 2024-04-11 15:01 ` Adolf Belka
2024-04-11 15:01 ` [PATCH 8/9] gcp-setup: " Adolf Belka
2024-04-11 15:01 ` [PATCH 9/9] oci-setup: " Adolf Belka
7 siblings, 0 replies; 9+ messages in thread
From: Adolf Belka @ 2024-04-11 15:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1062 bytes --]
- 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 <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
src/initscripts/helper/exoscale-setup | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/initscripts/helper/exoscale-setup b/src/initscripts/helper/exoscale-setup
index 02fdda2a3..acf5e4e4b 100644
--- a/src/initscripts/helper/exoscale-setup
+++ b/src/initscripts/helper/exoscale-setup
@@ -227,7 +227,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
--
2.44.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 8/9] gcp-setup: Fixes bug12763
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Adolf Belka
` (5 preceding siblings ...)
2024-04-11 15:01 ` [PATCH 7/9] exoscale-setup: " Adolf Belka
@ 2024-04-11 15:01 ` Adolf Belka
2024-04-11 15:01 ` [PATCH 9/9] oci-setup: " Adolf Belka
7 siblings, 0 replies; 9+ messages in thread
From: Adolf Belka @ 2024-04-11 15:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1163 bytes --]
- 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 <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
src/initscripts/helper/gcp-setup | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/initscripts/helper/gcp-setup b/src/initscripts/helper/gcp-setup
index 4f5148c3e..8273b70b4 100644
--- a/src/initscripts/helper/gcp-setup
+++ b/src/initscripts/helper/gcp-setup
@@ -268,8 +268,8 @@ case "${reason}" in
ip addr add "${new_ip_address}/${new_subnet_mask}" dev "${interface}"
# 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
# Setup DNS
for domain_name_server in ${new_domain_name_servers}; do
--
2.44.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 9/9] oci-setup: Fixes bug12763
2024-04-11 15:01 [PATCH 1/9] ipsec-interfaces: Fixes bug12763 Adolf Belka
` (6 preceding siblings ...)
2024-04-11 15:01 ` [PATCH 8/9] gcp-setup: " Adolf Belka
@ 2024-04-11 15:01 ` Adolf Belka
7 siblings, 0 replies; 9+ messages in thread
From: Adolf Belka @ 2024-04-11 15:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1163 bytes --]
- 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 <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
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-setup
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}"
# 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
# Setup DNS
for domain_name_server in ${new_domain_name_servers}; do
--
2.44.0
^ permalink raw reply [flat|nested] 9+ messages in thread