forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
19 lines
476 B
Bash
19 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
|