From: Daniel Golle Date: Thu, 11 Nov 2021 14:24:26 +0000 (+0000) Subject: dnsmasq: add ubus acl to allow calls to hotplug.tftp object X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=0cbc6b16db8ce03a522b9acb49ea46cc2134697a;p=openwrt%2Fstaging%2Fjow.git dnsmasq: add ubus acl to allow calls to hotplug.tftp object dnsmasq may call hotplug.dhcp, hotplug.neigh and hotplug.tftp. Only the first two callees were listed in the ACL, so add missing hotplug.tftp. Signed-off-by: Daniel Golle --- diff --git a/package/network/services/dnsmasq/files/dnsmasq_acl.json b/package/network/services/dnsmasq/files/dnsmasq_acl.json index 47d7c29302..67c6c20483 100644 --- a/package/network/services/dnsmasq/files/dnsmasq_acl.json +++ b/package/network/services/dnsmasq/files/dnsmasq_acl.json @@ -7,6 +7,9 @@ }, "hotplug.neigh": { "methods": [ "call" ] + }, + "hotplug.tftp": { + "methods": [ "call" ] } } }