freebsd-ports/www/fluxcms/files/pkg-deinstall.in
Pav Lucistnik 7f13a16a46 - Update to 1.4.0
PR:		ports/99474
Submitted by:	Beat Gatzi <beat@chruetertee.ch> (maintainer)
2006-06-26 14:47:18 +00:00

16 lines
332 B
Bash

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