freeswitch/debian/freeswitch.preinst
Travis Cross fa55b5e82d debian: avoid lintian maintainer-script-empty
We are going to fill in these files with useful things.
2012-05-06 22:46:13 +00:00

22 lines
303 B
Bash

#!/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
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0