summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMirko Vogt <mirko-openwrt@nanl.de>2020-12-05 12:34:41 +0000
committerJo-Philipp Wich <jo@mein.io>2020-12-06 14:41:59 +0100
commit555faf6f7c0d81fea58ea71af81b7b9abcbb7f46 (patch)
tree9def0d2e08605e81d60ab86eb1e76736c78c1aa3
parente984b63c36a0fe801ae1999f32cf43e322b8ed1a (diff)
luci-compat: Fix typo in wildcard which is supposed to grant all perms.
Signed-off-by: Mirko Vogt <mirko-openwrt@nanl.de>
-rw-r--r--modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json b/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json
index ea1a435367..8f07152589 100644
--- a/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json
+++ b/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json
@@ -2,10 +2,10 @@
"allow-full-uci-access": {
"description": "Allow full UCI access for legacy applications",
"read": {
- "uci": [ "'*" ]
+ "uci": [ "*" ]
},
"write": {
- "uci": [ "'*" ]
+ "uci": [ "*" ]
}
}
}