2
0

freeswitch.preinst 301 B

12345678910111213141516171819
  1. #!/bin/sh
  2. set -e
  3. case "$1" in
  4. install|upgrade)
  5. if [ -d /opt/freeswitch ]; then
  6. echo "It looks like you have FreeSWITCH installed manually." >&2
  7. fi
  8. ;;
  9. abort-upgrade)
  10. ;;
  11. *)
  12. echo "preinst called with unknown argument \`$1'" >&2
  13. exit 1
  14. ;;
  15. esac
  16. #DEBHELPER#
  17. exit 0