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

set -e

case "$1" in
  configure|reconfigure)
    chmod -f 4750 /usr/libexec/netdata/plugins.d/ebpf.plugin
    ;;
esac

#DEBHELPER#

exit 0