dpkg-doc.postinst 211 B

1234567891011
  1. #! /bin/sh
  2. if [ "$1" = configure ]; then
  3. if command -v install-docs >/dev/null 2>&1; then
  4. echo -n "Registering DPKG documentation..."
  5. install-docs -i /usr/share/doc-base/dpkg-doc
  6. echo "done."
  7. fi
  8. fi