master
text 11 lines 143 Bytes
Raw
1 #!/bin/sh
2
3 set -e
4
5 case "$1" in
6 configure|reconfigure)
7 chown root:netdata /usr/libexec/netdata/plugins.d/cups.plugin
8 ;;
9 esac
10
11 exit 0