public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/9] ipsec-interfaces: Don't throw away errors when creating routes
@ 2024-05-10 12:02 Michael Tremer
  2024-05-10 12:02 ` [PATCH 2/9] Revert "static-routes: Fixes bug12763" Michael Tremer
                   ` (8 more replies)
  0 siblings, 9 replies; 18+ messages in thread
From: Michael Tremer @ 2024-05-10 12:02 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1148 bytes --]

This partly reverts 87a97a431915849cf6d19e1b7137b4fb0b6dd91d.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/scripts/ipsec-interfaces | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/scripts/ipsec-interfaces b/src/scripts/ipsec-interfaces
index 974d3ac84..b05b2009c 100644
--- a/src/scripts/ipsec-interfaces
+++ b/src/scripts/ipsec-interfaces
@@ -115,7 +115,7 @@ main() {
 	# We are done when IPsec is not enabled
 	if [ "${ENABLED}" = "on" ]; then
 		# Enable route table lookup
-		ip rule add lookup "${ROUTE_TABLE}" prio "${ROUTE_TABLE_PRIO}" >/dev/null 2>&1
+		ip rule add lookup "${ROUTE_TABLE}" prio "${ROUTE_TABLE_PRIO}"
 
 		while IFS="," read -r "${VARS[@]}"; do
 			# Check if the connection is enabled
@@ -158,7 +158,7 @@ main() {
 
 						log "Creating route to ${rightsubnet} (via ${address} and ${RED_INTF})"
 						ip route add table "${ROUTE_TABLE}" "${rightsubnet}" proto static \
-							dev "${RED_INTF}" src "${address}" >/dev/null 2>&1
+							dev "${RED_INTF}" src "${address}"
 					done
 
 					# No interface processing required
-- 
2.39.2


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2024-05-10 15:24 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-10 12:02 [PATCH 1/9] ipsec-interfaces: Don't throw away errors when creating routes Michael Tremer
2024-05-10 12:02 ` [PATCH 2/9] Revert "static-routes: Fixes bug12763" Michael Tremer
2024-05-10 15:22   ` Adolf Belka
2024-05-10 12:02 ` [PATCH 3/9] Revert "red: " Michael Tremer
2024-05-10 15:22   ` Adolf Belka
2024-05-10 12:02 ` [PATCH 4/9] Revert "ip-up: " Michael Tremer
2024-05-10 15:23   ` Adolf Belka
2024-05-10 12:02 ` [PATCH 5/9] Revert "aws-setup: " Michael Tremer
2024-05-10 15:23   ` Adolf Belka
2024-05-10 12:02 ` [PATCH 6/9] Revert "azure-setup: " Michael Tremer
2024-05-10 15:23   ` Adolf Belka
2024-05-10 12:02 ` [PATCH 7/9] Revert "exoscale-setup: " Michael Tremer
2024-05-10 15:24   ` Adolf Belka
2024-05-10 12:02 ` [PATCH 8/9] Revert "gcp-setup: " Michael Tremer
2024-05-10 15:24   ` Adolf Belka
2024-05-10 12:02 ` [PATCH 9/9] Revert "oci-setup: " Michael Tremer
2024-05-10 15:24   ` Adolf Belka
2024-05-10 15:21 ` [PATCH 1/9] ipsec-interfaces: Don't throw away errors when creating routes Adolf Belka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox