summaryrefslogtreecommitdiffstats
path: root/contrib/debian/netdata-plugin-perf.postinst
blob: 5250275cc2a438e51374b5f85c63f7770bd34530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e

case "$1" in
  configure|reconfigure)
    chown root:netdata /usr/libexec/netdata/plugins.d/perf.plugin
    if capsh --supports=cap_perfmon 2>/dev/null; then
        setcap cap_perfmon+ep /usr/libexec/netdata/plugins.d/perf.plugin
    else
        setcap cap_sys_admin+ep /usr/libexec/netdata/plugins.d/perf.plugin
    fi
    ;;
esac

#DEBHELPER#

exit 0