mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
12 lines
320 B
Text
12 lines
320 B
Text
setcap_netdata() {
|
|
# https://github.com/netdata/netdata/tree/master/collectors/apps.plugin#permissions
|
|
setcap cap_dac_read_search,cap_sys_ptrace+ep /usr/lib/netdata/plugins.d/apps.plugin || chmod 1755 /usr/lib/netdata/plugins.d/apps.plugin
|
|
}
|
|
|
|
post_install() {
|
|
setcap_netdata
|
|
}
|
|
|
|
post_upgrade() {
|
|
setcap_netdata
|
|
}
|