mirror of
https://github.com/openwrt/luci.git
synced 2025-12-21 17:04:35 +04:00
This reverts commit 4163e3810a.
Due to cache problem it's better to revert this minor fixup than adding
a fixup on top of it. For OPKG it doesn't cause any problem as the extra
unsupported options is just ignored.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
30 lines
774 B
JSON
30 lines
774 B
JSON
{
|
|
"luci-app-opkg": {
|
|
"description": "Grant access to opkg management",
|
|
"read": {
|
|
"cgi-io": [ "exec" ],
|
|
"file": {
|
|
"/usr/libexec/opkg-list installed": [ "exec" ],
|
|
"/usr/libexec/opkg-list available": [ "exec" ],
|
|
"/usr/libexec/opkg-call list-installed": [ "exec" ],
|
|
"/usr/libexec/opkg-call list-available": [ "exec" ],
|
|
"/etc/opkg.conf": [ "read" ],
|
|
"/etc/opkg/*.conf": [ "read" ]
|
|
},
|
|
"ubus": {
|
|
"luci": [ "getMountPoints" ]
|
|
}
|
|
},
|
|
"write": {
|
|
"file": {
|
|
"/usr/libexec/opkg-call install *": [ "exec" ],
|
|
"/usr/libexec/opkg-call remove *": [ "exec" ],
|
|
"/usr/libexec/opkg-call update *": [ "exec" ],
|
|
"/etc/opkg.conf": [ "write" ],
|
|
"/etc/opkg/*.conf": [ "write" ],
|
|
"/tmp/upload.ipk": [ "write" ]
|
|
}
|
|
}
|
|
}
|
|
}
|