Add 4 new packages implementing unified device intelligence and DNS provider API management: - secubox-app-dns-provider: dnsctl CLI with OVH, Gandi, Cloudflare adapters for DNS record CRUD, HAProxy vhost sync, propagation verification, and ACME DNS-01 wildcard certificate issuance - luci-app-dns-provider: RPCD handler + LuCI views for provider settings and DNS record management - secubox-app-device-intel: Aggregation layer merging mac-guardian, client-guardian, DHCP, P2P mesh, and exposure data with heuristic classification engine and USB/MQTT/Zigbee emulator modules - luci-app-device-intel: RPCD handler + 5 LuCI views (dashboard, devices, emulators, mesh, settings) with shared API and CSS Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
696 B
JSON
30 lines
696 B
JSON
{
|
|
"luci-app-device-intel": {
|
|
"description": "Grant access to SecuBox Device Intelligence",
|
|
"read": {
|
|
"file": {
|
|
"/etc/config/device-intel": ["read"],
|
|
"/tmp/device-intel/*": ["read"]
|
|
},
|
|
"ubus": {
|
|
"file": ["read", "stat"],
|
|
"luci.device-intel": ["*"],
|
|
"luci.mac-guardian": ["get_clients", "get_status"],
|
|
"luci.client-guardian": ["clients", "zones"],
|
|
"luci.secubox-p2p": ["get_peers", "health"],
|
|
"luci.exposure": ["scan"]
|
|
},
|
|
"uci": ["device-intel", "client-guardian", "mac-guardian"]
|
|
},
|
|
"write": {
|
|
"file": {
|
|
"/etc/config/device-intel": ["write"]
|
|
},
|
|
"ubus": {
|
|
"luci.device-intel": ["*"]
|
|
},
|
|
"uci": ["device-intel"]
|
|
}
|
|
}
|
|
}
|