Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
netdata
netdata
/
packaging
/
cmake
/
pkg-files
/
deb
/
plugin-ebpf
/
postinst
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
text
12 lines
245 Bytes
Copy permalink
Copy
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