summaryrefslogtreecommitdiffstats
path: root/contrib/debian/netdata-plugin-slabinfo.postinst
blob: b697e724e192a478872c72b2f82d0745d01172c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

case "$1" in
  configure|reconfigure)
    chown root:netdata /usr/libexec/netdata/plugins.d/slabinfo.plugin
    setcap "cap_dac_read_search=eip" /usr/libexec/netdata/plugins.d/slabinfo.plugin
    ;;
esac

#DEBHELPER#

exit 0