dpkg-doc.prerm 241 B

123456789101112131415
  1. #!/bin/sh
  2. set -e
  3. case "$1" in
  4. remove|deconfigure|upgrade)
  5. if command -v install-docs >/dev/null 2>&1; then
  6. echo -n "Unregistering DPKG documentation..."
  7. install-docs -r dpkg-internals || true
  8. echo "done."
  9. fi
  10. ;;
  11. esac