summaryrefslogtreecommitdiffstats
path: root/packaging/cmake/pkg-files/deb/plugin-cups/postinst
blob: 2490a472922be270e1258b2e8535c181b0f6606e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

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

exit 0