diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-11-14 07:00:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 07:00:30 +0100 |
commit | 92b828154497c534ce82af16320ed34f0c15e51c (patch) | |
tree | 4fb0e69e87e37cca30451af6c06a83944486c2ad /src/etc/dhcp/dhclient-exit-hooks.d/01-vyos-cleanup | |
parent | 61574eaf2d703e8084c8272e6976fd44abaea482 (diff) | |
parent | 00ec496877453cc37ceec0633821a47f128d9f4f (diff) | |
download | vyos-1x-92b828154497c534ce82af16320ed34f0c15e51c.tar.gz vyos-1x-92b828154497c534ce82af16320ed34f0c15e51c.zip |
Merge pull request #1656 from vfreex/fix-ns-config
T4815: Fix various name server config issues
Diffstat (limited to 'src/etc/dhcp/dhclient-exit-hooks.d/01-vyos-cleanup')
-rw-r--r-- | src/etc/dhcp/dhclient-exit-hooks.d/01-vyos-cleanup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/dhcp/dhclient-exit-hooks.d/01-vyos-cleanup b/src/etc/dhcp/dhclient-exit-hooks.d/01-vyos-cleanup index ad6a1d5eb..da1bda137 100644 --- a/src/etc/dhcp/dhclient-exit-hooks.d/01-vyos-cleanup +++ b/src/etc/dhcp/dhclient-exit-hooks.d/01-vyos-cleanup @@ -8,7 +8,7 @@ hostsd_changes= /usr/bin/systemctl -q is-active vyos-hostsd hostsd_status=$? -if [[ $reason =~ (EXPIRE|FAIL|RELEASE|STOP) ]]; then +if [[ $reason =~ ^(EXPIRE|FAIL|RELEASE|STOP)$ ]]; then if [[ $hostsd_status -eq 0 ]]; then # delete search domains and nameservers via vyos-hostsd logmsg info "Deleting search domains with tag \"dhcp-$interface\" via vyos-hostsd-client" @@ -96,7 +96,7 @@ if [[ $reason =~ (EXPIRE|FAIL|RELEASE|STOP) ]]; then fi fi -if [[ $reason =~ (EXPIRE6|RELEASE6|STOP6) ]]; then +if [[ $reason =~ ^(EXPIRE6|RELEASE6|STOP6)$ ]]; then if [[ $hostsd_status -eq 0 ]]; then # delete search domains and nameservers via vyos-hostsd logmsg info "Deleting search domains with tag \"dhcpv6-$interface\" via vyos-hostsd-client" |