commit 6ec16a15eadd70234be7341551725cf0d5f9e54b (HEAD -> master)
Author: Mirko Vogt <mirko-openwrt@nanl.de>
Date: Sat Dec 5 12:34:41 2020 +0000
luci-compat: Fix typo in wildcard which is supposed to grant all perms.
Signed-off-by: Mirko Vogt <mirko-openwrt@nanl.de>
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 ea1a43536..8f0715258 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": [ "*" ]
}
}
}