luci-app-firewall.json 411 B

123456789101112131415161718192021222324
  1. {
  2. "luci-app-firewall": {
  3. "description": "Grant access to firewall configuration",
  4. "read": {
  5. "file": {
  6. "/etc/firewall.user": [ "read" ]
  7. },
  8. "ubus": {
  9. "file": [ "read" ],
  10. "luci": [ "getConntrackHelpers" ]
  11. },
  12. "uci": [ "firewall" ]
  13. },
  14. "write": {
  15. "file": {
  16. "/etc/firewall.user": [ "write" ]
  17. },
  18. "ubus": {
  19. "file": [ "write" ]
  20. },
  21. "uci": [ "firewall" ]
  22. }
  23. }
  24. }