summaryrefslogtreecommitdiff
path: root/src/etc/dhcp
diff options
context:
space:
mode:
authorLucas Christian <lucas@lucasec.com>2024-04-12 09:34:13 -0700
committerLucas Christian <lucas@lucasec.com>2024-04-12 09:34:13 -0700
commit840ab82e8821624aae589dec1ea86cefbcf866b7 (patch)
tree612f7075019ef5b0cabfc71bfe6af7b068b21dbe /src/etc/dhcp
parent1170a2fffe918957818c3b8ea53aad15a8898b87 (diff)
downloadvyos-1x-840ab82e8821624aae589dec1ea86cefbcf866b7.tar.gz
vyos-1x-840ab82e8821624aae589dec1ea86cefbcf866b7.zip
T5872: fix ipsec dhclient hook uses "exit" instead of "return"
Diffstat (limited to 'src/etc/dhcp')
-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