summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-04-12 20:30:18 +0200
committerGitHub <noreply@github.com>2024-04-12 20:30:18 +0200
commita8b85291f47c5674d6d8a448e818981315625f70 (patch)
tree612f7075019ef5b0cabfc71bfe6af7b068b21dbe
parent1170a2fffe918957818c3b8ea53aad15a8898b87 (diff)
parent840ab82e8821624aae589dec1ea86cefbcf866b7 (diff)
downloadvyos-1x-a8b85291f47c5674d6d8a448e818981315625f70.tar.gz
vyos-1x-a8b85291f47c5674d6d8a448e818981315625f70.zip
Merge pull request #3302 from lucasec/t5872-fix
T5872: fix ipsec dhclient hook uses "exit" instead of "return"
-rwxr-xr-xsrc/etc/dhcp/dhclient-exit-hooks.d/99-ipsec-dhclient-hook6
1 files changed, 3 insertions, 3 deletions
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