freebsd-ports/devel/flyspray/pkg-deinstall
Rong-En Fan addebf1f7b - Be more friendly for package
- Bump PORTREVISION to build new package

PR:		ports/115862
Submitted by:	Nick Hilliard <nick at foobar.org> (maintainer)
2007-09-05 14:53:58 +00:00

17 lines
386 B
Bash

#!/bin/sh
case $2 in
DEINSTALL)
echo "--"
echo "The Flyspray program has been deleted but the bug tracking database has"
echo "not been touched. To delete all the bug tracking information, execute the"
echo "following commands:"
echo ""
echo "# rm -rf /var/db/flyspray"
echo "# mysqladmin -u root -p drop flyspray"
echo ""
echo "Thanks for using Flyspray!"
echo "--"
;;
esac