freeswitch/debian/freeswitch.preinst

19 lines
189 B
Plaintext
Raw Normal View History

2012-02-24 01:03:09 +00:00
#!/bin/sh
set -e
case "$1" in
install|upgrade)
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0