mirror of
https://github.com/openwrt/luci.git
synced 2026-04-15 10:51:51 +00:00
Add set permission in acl.d file for luci-app-lxc to allow users to set lxc options in luci-app-lxc. (considering that user has write permission for this app) Signed-off-by: mdevolde <martin.devolder2@gmail.com>
15 lines
194 B
JSON
15 lines
194 B
JSON
{
|
|
"luci-app-lxc": {
|
|
"description": "Grant UCI access for luci-app-lxc",
|
|
"read": {
|
|
"uci": [ "lxc" ]
|
|
},
|
|
"write": {
|
|
"ubus": {
|
|
"uci": [ "set" ]
|
|
},
|
|
"uci": [ "lxc" ]
|
|
}
|
|
}
|
|
}
|