diff options
| author | Daniel Golle | 2021-11-11 14:24:26 +0000 |
|---|---|---|
| committer | Daniel Golle | 2021-11-12 15:02:58 +0000 |
| commit | 0cbc6b16db8ce03a522b9acb49ea46cc2134697a (patch) | |
| tree | 192f578d65e8faec5cda05baba0f0cc2dc04618c | |
| parent | 959a0308e5ac3af5a27fc5c401e8e11b5d316c6f (diff) | |
| download | openwrt-0cbc6b16db8ce03a522b9acb49ea46cc2134697a.tar.gz | |
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 <daniel@makrotopia.org>
| -rw-r--r-- | package/network/services/dnsmasq/files/dnsmasq_acl.json | 3 |
1 files changed, 3 insertions, 0 deletions
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" ] } } } |