7f13a16a46
PR: ports/99474 Submitted by: Beat Gatzi <beat@chruetertee.ch> (maintainer)
16 lines
332 B
Bash
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
|