summaryrefslogtreecommitdiff
path: root/src/system
diff options
context:
space:
mode:
authorkroy <kroy@kroy.io>2019-11-18 17:16:46 -0600
committerkroy <kroy@kroy.io>2019-11-18 17:16:46 -0600
commitc043aab86d3014146a643f1c6d25edec09278873 (patch)
tree1796f3099d5b22376c9b176ed1ad7e35908238fb /src/system
parentfb72bc367234bf35628bdccf84b0b76108f6341e (diff)
downloadvyos-1x-c043aab86d3014146a643f1c6d25edec09278873.tar.gz
vyos-1x-c043aab86d3014146a643f1c6d25edec09278873.zip
[vyos-hostsd] T1812: Reload pdns on dhcp client update
Diffstat (limited to 'src/system')
-rwxr-xr-xsrc/system/on-dhcp-event.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/system/on-dhcp-event.sh b/src/system/on-dhcp-event.sh
index 70a563d4c..af7c86ee7 100755
--- a/src/system/on-dhcp-event.sh
+++ b/src/system/on-dhcp-event.sh
@@ -45,11 +45,13 @@ case "$action" in
# add host
/usr/bin/vyos-hostsd-client --add-hosts --tag "DHCP-$client_ip" --host "$client_fqdn_name,$client_ip"
;;
+ ((changes++))
release) # delete mapping for released address
# delete host
/usr/bin/vyos-hostsd-client --delete-hosts --tag "DHCP-$client_ip"
;;
+ ((changes++))
*)
logger -s -t on-dhcp-event "Invalid command \"$1\""