diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-04-09 22:52:37 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-04-09 23:23:33 +0200 |
commit | c099344013ad72d01a93b99184c72c5eeb792174 (patch) | |
tree | c01d65714fe1813b689151a31d370baca498f971 /applications/luci-app-statistics/root | |
parent | 1e07e3a52d4d06cc82ab07f2b7fbba0a9a6fb801 (diff) |
treewide: reorganize base ACLs
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-statistics/root')
-rw-r--r-- | applications/luci-app-statistics/root/usr/share/rpcd/acl.d/luci-app-statistics.json | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/applications/luci-app-statistics/root/usr/share/rpcd/acl.d/luci-app-statistics.json b/applications/luci-app-statistics/root/usr/share/rpcd/acl.d/luci-app-statistics.json index 2529fca16..3168b3740 100644 --- a/applications/luci-app-statistics/root/usr/share/rpcd/acl.d/luci-app-statistics.json +++ b/applications/luci-app-statistics/root/usr/share/rpcd/acl.d/luci-app-statistics.json @@ -5,19 +5,29 @@ "cgi-io": [ "read", "exec" ], "file": { "/etc/filesystems": [ "read" ], - "/etc/group": [ "read" ], - "/etc/passwd": [ "read" ], "/proc/filesystems": [ "read" ], "/proc/interrupts": [ "read" ], "/proc/mounts": [ "read" ], "/proc/partitions": [ "read" ], "/proc/sys/kernel/hostname": [ "read" ], - "/usr/bin/rrdtool graph - -a PNG *": [ "exec" ], + "/tmp/rrd": [ "list" ], + "/usr/bin/rrdtool graph - -a PNG -s *": [ "exec" ], + "/usr/lib/collectd": [ "list" ], "/usr/sbin/iptables-save": [ "exec" ], "/usr/sbin/ip6tables-save": [ "exec" ], "/usr/sbin/sensors -j": [ "exec" ], - "/usr/share/luci/statistics/plugins/*.json": [ "read" ] - } + "/usr/share/luci/statistics/plugins": [ "list" ], + "/usr/share/luci/statistics/plugins/*.json": [ "read" ], + "/var/run": [ "list" ], + "/www/luci-static/resources/statistics/rrdtool/definitions": [ "list" ] + }, + "ubus": { + "file": [ "list", "read" ] + }, + "uci": [ "luci_statistics" ] + }, + "write": { + "uci": [ "luci_statistics" ] } } } |