blob: 1e7bd936c0cc293f08c03694486594a6e5cceeb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo "See \"MythTV\" on the Archlinux Wiki for installation information - Extensive!!"
}
post_upgrade() {
echo "Make sure you rescan for audio devices (use the frontend audio settings menu)"
echo "See http://www.mythtv.org/wiki/Release_Notes_-_0.24 for details"
}
post_remove() {
echo -e "NOTE: mysql database was not removed. To remove run:\nmysql -u root -e 'drop database mythconverg;'"
}
|