0
0
mirror of https://github.com/netdata/netdata.git synced 2024-11-24 08:26:54 +00:00
netdata_netdata/packaging/cmake/pkg-files/deb/plugin-perf/postinst
Austin S. Hemmelgarn 78fcd815dc
Restructure packaging related files to better reflect usage. (#17678)
* Restructure packaging related files to better reflect usage.

* Remove redundant variable declaration.

* Fix variable name.
2024-05-30 12:40:29 -04:00

19 lines
479 B
Bash
Executable File

#!/bin/sh
set -e
case "$1" in
configure|reconfigure)
chown root:netdata /usr/libexec/netdata/plugins.d/perf.plugin
chmod 0750 /usr/libexec/netdata/plugins.d/perf.plugin
if ! setcap cap_perfmon+ep /usr/libexec/netdata/plugins.d/perf.plugin 2>/dev/null; then
if ! setcap cap_sys_admin+ep /usr/libexec/netdata/plugins.d/perf.plugin 2>/dev/null; then
chmod -f 4750 /usr/libexec/netdata/plugins.d/perf.plugin
fi
fi
;;
esac
exit 0