summaryrefslogtreecommitdiff
path: root/src/system
diff options
context:
space:
mode:
authorkroy-the-rabbit <kroy@kroy.io>2020-05-19 16:55:22 -0500
committerGitHub <noreply@github.com>2020-05-19 16:55:22 -0500
commitc5bb9e9e89a80eee5ff732287d6ac66db8bf9ba5 (patch)
tree220abd57bb69ee8d662dcb85a9c479b92d83bd66 /src/system
parent7c55de11ca140fd8eed980c0c9db6302e1a05974 (diff)
downloadvyos-1x-c5bb9e9e89a80eee5ff732287d6ac66db8bf9ba5.tar.gz
vyos-1x-c5bb9e9e89a80eee5ff732287d6ac66db8bf9ba5.zip
Revert "T2465: vyos-hostsd-client needs sudo"
Diffstat (limited to 'src/system')
-rwxr-xr-xsrc/system/on-dhcp-event.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/system/on-dhcp-event.sh b/src/system/on-dhcp-event.sh
index 3e2b6430d..385ae460f 100755
--- a/src/system/on-dhcp-event.sh
+++ b/src/system/on-dhcp-event.sh
@@ -43,13 +43,13 @@ case "$action" in
exit 1
fi
# add host
- sudo /usr/bin/vyos-hostsd-client --add-hosts --tag "DHCP-$client_ip" --host "$client_fqdn_name,$client_ip"
+ /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
- sudo /usr/bin/vyos-hostsd-client --delete-hosts --tag "DHCP-$client_ip"
+ /usr/bin/vyos-hostsd-client --delete-hosts --tag "DHCP-$client_ip"
((changes++))
;;