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-netflow
/
postinst
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
text
12 lines
207 Bytes
Copy permalink
Copy
Raw
1
#!/bin/sh
2
3
set
-e
4
5
case
"
$1
"
in
6
configure|reconfigure
)
7
chown
root:netdata /usr/libexec/netdata/plugins.d/netflow-plugin
8
chmod
0750 /usr/libexec/netdata/plugins.d/netflow-plugin
9
;;
10
esac
11
12
exit
0