0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-03-09 19:17:23 +00:00
netdata_netdata/packaging/cmake/pkg-files/deb/plugin-xenstat/postinst
Austin S. Hemmelgarn 78fcd815dc
Restructure packaging related files to better reflect usage. ()
* Restructure packaging related files to better reflect usage.

* Remove redundant variable declaration.

* Fix variable name.
2024-05-30 12:40:29 -04:00

12 lines
210 B
Bash
Executable file

#!/bin/sh
set -e
case "$1" in
configure|reconfigure)
chown root:netdata /usr/libexec/netdata/plugins.d/xenstat.plugin
chmod -f 4750 /usr/libexec/netdata/plugins.d/xenstat.plugin
;;
esac
exit 0