mirror of
https://github.com/netdata/netdata.git
synced 2024-11-24 08:26:54 +00:00
78fcd815dc
* Restructure packaging related files to better reflect usage. * Remove redundant variable declaration. * Fix variable name.
13 lines
208 B
Bash
Executable File
13 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure|reconfigure)
|
|
chown root:netdata /usr/libexec/netdata/plugins.d/nfacct.plugin
|
|
chmod -f 4750 /usr/libexec/netdata/plugins.d/nfacct.plugin
|
|
;;
|
|
esac
|
|
|
|
exit 0
|