summaryrefslogtreecommitdiffstats
path: root/contrib/debian/netdata-plugin-perf.postinst
blob: 76905878ef87ffa48ca7a920c3655835bcdf9dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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 capsh --supports=cap_perfmon 2>/dev/null; then
        setcap cap_perfmon+ep /usr/libexec/netdata/plugins.d/perf.plugin
        ret="$?"
    else
        setcap cap_sys_admin+ep /usr/libexec/netdata/plugins.d/perf.plugin
        ret="$?"
    fi

    if [ "${ret}" -ne 0 ]; then
        chmod -f 4750 /usr/libexec/netdata/plugins.d/perf.plugin
    fi
    ;;
esac

#DEBHELPER#

exit 0