freebsd-ports/devel/flyspray/pkg-deinstall
Sunpoet Po-Chuan Hsieh 7f68879f20 - Add PostgreSQL as backend option (WITH_POSTGRES)
- Update README for PostgreSQL users
- Remove obsolete MD5 checksum

PR:		ports/154531
Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Approved by:	Nick Hilliard <nick@foobar.org> (maintainer)
Feature safe:	yes
2011-02-05 22:56:19 +00:00

20 lines
476 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 "or"
echo "# dropdb -U pgsql flyspray"
echo "if you are using PostgreSQL backend"
echo ""
echo "Thanks for using Flyspray!"
echo "--"
;;
esac