family. It shares a number of common components with the rest of the family, but can be used alone. It implements several powerful address mapping capabilities in addtion to supporting UAC registration. WWW: http://sipx-wiki.calivia.com/index.php/Main_Page PR: ports/107931 Submitted by: Michael Durian <durian at shadetreesoftware.com>
19 lines
417 B
Bash
19 lines
417 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin
|
|
|
|
LOCALSTATEDIR="%%LOCALSTATEDIR%%"
|
|
|
|
post-deinstall() {
|
|
echo "WARNING: If you will *NOT* use this package anymore, please remove
|
|
the"
|
|
echo " following file manually:"
|
|
echo " ${LOCALSTATEDIR}/sipxdata/upgrade/sipxregistry-previous.tgz"
|
|
echo
|
|
}
|
|
|
|
case $2 in
|
|
POST-DEINSTALL)
|
|
post-deinstall
|
|
;;
|
|
esac
|