postinst 143 B

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