master
text 12 lines 245 Bytes
Raw
1 #!/bin/sh
2
3 set -e
4
5 case "$1" in
6 configure|reconfigure)
7 grep /usr/libexec/netdata /var/lib/dpkg/info/netdata-plugin-ebpf.list | xargs -n 30 chown root:netdata
8 chmod -f 4750 /usr/libexec/netdata/plugins.d/ebpf.plugin
9 ;;
10 esac
11
12 exit 0