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