blob: efc9df8696606fb76898a79a66f8623508c6d223 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/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
|