secubox-openwrt/package/secubox/luci-app-cloner/root/usr/share/rpcd/acl.d/luci-app-cloner.json
CyberMind-FR b5b2b98b68 feat(luci-app-cloner): Add remote device management and ASU clone builder
- Add remote device management: scan_network, list_remotes, add_remote,
  remove_remote, remote_status, remote_upload, remote_flash RPCD methods
- Add secubox-asu-clone script for on-the-fly firmware generation via
  OpenWrt ASU (Attended Sysupgrade) API
- Include full LuCI packages in ASU builds (luci-base, luci-mod-admin-full,
  luci-mod-network, luci-mod-status, luci-mod-system, etc.)
- Add partition expansion script (10-expand-rootfs) to use full SD card/eMMC
  with proper UUID and boot config handling for both MBR and GPT
- Add robust provisioning script (99-secubox-provision) with network retry,
  firewall handling, and SecuBox package installation from local feed
- Use dropbear's dbclient for SSH operations (OpenWrt native)
- Support mochabin, espressobin-v7, espressobin-ultra, x86-64 devices
- Default to OpenWrt version 24.10.5

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-13 07:30:36 +01:00

26 lines
733 B
JSON

{
"luci-app-cloner": {
"description": "Grant access to SecuBox Cloning Station",
"read": {
"ubus": {
"luci.cloner": [
"status", "list_images", "list_tokens", "list_clones", "list_devices",
"build_progress", "build_log", "serial_ports", "serial_read",
"history_list", "storage_info", "image_details",
"list_remotes", "remote_status", "scan_network"
]
}
},
"write": {
"ubus": {
"luci.cloner": [
"generate_token", "build_image", "tftp_start", "tftp_stop",
"delete_token", "delete_image", "serial_start", "serial_stop", "serial_write",
"history_add", "history_clear", "image_rename",
"add_remote", "remove_remote", "remote_upload", "remote_flash"
]
}
}
}
}