freebsd-ports/devel/flyspray/pkg-deinstall
Erwin Lansing 3f009cb215 Add flyspray 0.9.4,
a simple, easy-to-use web based bug tracking
system.

PR:		56082
Submitted by:	Nick Hilliard <nick@foobar.org>
2003-08-28 19:56:31 +00:00

16 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