summaryrefslogtreecommitdiffstats
path: root/contrib/debian/netdata-plugin-cups.postinst
blob: df89ea3813825c5efc939e6b2792e995f81b3001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

case "$1" in
  configure|reconfigure)
    chown root:netdata /usr/libexec/netdata/plugins.d/cups.plugin
    ;;
esac

#DEBHELPER#

exit 0