blob: 2458d6d6cf640b0c6010d41889e1c538ee3c1391 (
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/ebpf.plugin
chmod -f 4750 /usr/libexec/netdata/plugins.d/ebpf.plugin
;;
esac
#DEBHELPER#
exit 0
|