0
0
mirror of https://github.com/openwrt/luci.git synced 2025-04-06 03:04:37 +00:00
Files
Dirk Brenken e76d9cc767 luci-app-sqm: fix JS error if service is disabled
* fix a 'resource not found error' if the sqm service has been disabled
  and the dir '/var/run/sqm/available_qdiscs' not exist
* inform the user about this issue and provide a button
  to enable & start the service

Signed-off-by: Dirk Brenken <dev@brenken.org>
2021-06-09 22:36:32 +02:00

22 lines
432 B
JSON

{
"luci-app-sqm": {
"description": "Grant UCI access for luci-app-sqm",
"read": {
"file": {
"/var/run/sqm/available_qdiscs": [ "list" ],
"/usr/lib/sqm/*.qos.help": [ "read" ],
"/etc/init.d/sqm enable" : [ "exec" ],
"/etc/init.d/sqm start" : [ "exec" ]
},
"uci": [ "sqm" ],
"ubus": {
"file": [ "read", "list" ],
"luci": [ "setInitAction" ]
}
},
"write": {
"uci": [ "sqm" ]
}
}
}