blob: 956c9c0de2acedb4fc51bf04d187c28e3a706688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
case "$1" in
configure|reconfigure)
chown root:netdata /usr/libexec/netdata/plugins.d/freeipmi.plugin
chmod -f 4750 /usr/libexec/netdata/plugins.d/freeipmi.plugin
;;
esac
exit 0
|