Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

postinst 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/bin/sh
  2. # postinst script for snf-server-postfix.
  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. # Integrate with postfix.
  20. /usr/sbin/SNFServerConfig -with=postfix
  21. ;;
  22. abort-upgrade|abort-remove|abort-deconfigure)
  23. ;;
  24. *)
  25. echo "postinst called with unknown argument \`$1'" >&2
  26. exit 1
  27. ;;
  28. esac
  29. # dh_installdeb will replace this with shell code automatically
  30. # generated by other debhelper scripts.
  31. #DEBHELPER#
  32. exit 0