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-Tag: v22.03.0-rc1~1230 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cbc6b16db8ce03a522b9acb49ea46cc2134697a;p=thirdparty%2Fopenwrt.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 47d7c293029..67c6c20483c 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" ] } } }