freeswitch/debian/freeswitch.preinst

20 lines
301 B
Plaintext
Raw Normal View History

2012-02-24 01:03:09 +00:00
#!/bin/sh
set -e
case "$1" in
install|upgrade)
if [ -d /opt/freeswitch ]; then
echo "It looks like you have FreeSWITCH installed manually." >&2
fi
2012-02-24 01:03:09 +00:00
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0