From 8ac67c2fc03065b257e7f53e28a6153d6dfd371b Mon Sep 17 00:00:00 2001 From: Lucas Christian Date: Fri, 12 Apr 2024 09:34:13 -0700 Subject: T5872: fix ipsec dhclient hook uses "exit" instead of "return" (cherry picked from commit 840ab82e8821624aae589dec1ea86cefbcf866b7) --- src/etc/dhcp/dhclient-exit-hooks.d/99-ipsec-dhclient-hook | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/etc/dhcp') diff --git a/src/etc/dhcp/dhclient-exit-hooks.d/99-ipsec-dhclient-hook b/src/etc/dhcp/dhclient-exit-hooks.d/99-ipsec-dhclient-hook index ebb100e8b..57f803055 100755 --- a/src/etc/dhcp/dhclient-exit-hooks.d/99-ipsec-dhclient-hook +++ b/src/etc/dhcp/dhclient-exit-hooks.d/99-ipsec-dhclient-hook @@ -17,7 +17,7 @@ DHCP_HOOK_IFLIST="/tmp/ipsec_dhcp_interfaces" if ! { [ -f $DHCP_HOOK_IFLIST ] && grep -qw $interface $DHCP_HOOK_IFLIST; }; then - exit 0 + return 0 fi # Re-generate the config on the following events: @@ -26,10 +26,10 @@ fi # - REBIND: re-generate if the IP address changed if [ "$reason" == "RENEW" ] || [ "$reason" == "REBIND" ]; then if [ "$old_ip_address" == "$new_ip_address" ]; then - exit 0 + return 0 fi elif [ "$reason" != "BOUND" ]; then - exit 0 + return 0 fi # Best effort wait for any active commit to finish -- cgit v1.2.3