From 0cbc6b16db8ce03a522b9acb49ea46cc2134697a Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 11 Nov 2021 14:24:26 +0000 Subject: [PATCH] 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 --- package/network/services/dnsmasq/files/dnsmasq_acl.json | 3 +++ 1 file changed, 3 insertions(+) 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" ] } } } -- 2.30.2