0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-02-02 04:39:47 +00:00
netdata_netdata/packaging/cmake/pkg-files/deb/plugin-cups/postinst
Austin S. Hemmelgarn 78fcd815dc
Restructure packaging related files to better reflect usage. (#17678)
* Restructure packaging related files to better reflect usage.

* Remove redundant variable declaration.

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

11 lines
143 B
Bash
Executable file

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