summaryrefslogtreecommitdiff
path: root/src/etc/dhcp
diff options
context:
space:
mode:
authorLucas Christian <lucas@lucasec.com>2024-04-12 09:34:13 -0700
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-04-12 18:31:03 +0000
commit8ac67c2fc03065b257e7f53e28a6153d6dfd371b (patch)
tree8e5daba618474193d37537d9bb683d7c9a33a2a7 /src/etc/dhcp
parent799864a177e429c782c4fa2ffc72b0a10cd23a5e (diff)
downloadvyos-1x-8ac67c2fc03065b257e7f53e28a6153d6dfd371b.tar.gz
vyos-1x-8ac67c2fc03065b257e7f53e28a6153d6dfd371b.zip
T5872: fix ipsec dhclient hook uses "exit" instead of "return"
(cherry picked from commit 840ab82e8821624aae589dec1ea86cefbcf866b7)
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