Browse Source

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 <[email protected]>
Daniel Golle 4 years ago
parent
commit
0cbc6b16db
1 changed files with 3 additions and 0 deletions
  1. 3 0
      package/network/services/dnsmasq/files/dnsmasq_acl.json

+ 3 - 0
package/network/services/dnsmasq/files/dnsmasq_acl.json

@@ -7,6 +7,9 @@
 		},
 		"hotplug.neigh": {
 			"methods": [ "call" ]
+		},
+		"hotplug.tftp": {
+			"methods": [ "call" ]
 		}
 	}
 }