postinst.ex 961 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/bin/sh
  2. # postinst script for http-parser
  3. #
  4. # see: dh_installdeb(1)
  5. set -e
  6. # summary of how this script can be called:
  7. # * <postinst> `configure' <most-recently-configured-version>
  8. # * <old-postinst> `abort-upgrade' <new version>
  9. # * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  10. # <new-version>
  11. # * <postinst> `abort-remove'
  12. # * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  13. # <failed-install-package> <version> `removing'
  14. # <conflicting-package> <version>
  15. # for details, see http://www.debian.org/doc/debian-policy/ or
  16. # the debian-policy package
  17. case "$1" in
  18. configure)
  19. ;;
  20. abort-upgrade|abort-remove|abort-deconfigure)
  21. ;;
  22. *)
  23. echo "postinst called with unknown argument \`$1'" >&2
  24. exit 1
  25. ;;
  26. esac
  27. # dh_installdeb will replace this with shell code automatically
  28. # generated by other debhelper scripts.
  29. #DEBHELPER#
  30. exit 0