1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
freebsd-ports/ports-mgmt/portaudit/pkg-deinstall

20 lines
367 B
Plaintext
Raw Normal View History

#!/bin/sh
#
# $FreeBSD$
#
case $2 in
POST-DEINSTALL)
echo
echo "The portaudit package has been deleted."
if [ -f "%%DATABASEDIR%%/auditfile.tbz" ]; then
echo "If you're *not* upgrading and won't be using"
echo "it any longer, you may want to remove the"
echo "portaudit database:"
echo
echo " rm -Rf %%DATABASEDIR%%"
fi
echo
;;
esac