mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
d713598f90
PR: 79216 Submitted by: Nick Hilliard <nick@foobar.org> (maintainer)
19 lines
489 B
Bash
19 lines
489 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
# /bin/rm -f ${PKG_PREFIX}/share/flyspray/flyspray.conf.php
|
|
# /bin/rmdir ${PKG_PREFIX}/share/flyspray/
|
|
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
|