blob: c460f199cce449ffc87a27b76d1589ec17c69480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# arg 1: the new package version
post_install() {
echo "See \"MythTV\" on the Archlinux Wiki for installation information - Extensive!!"
}
# arg 1: the old package version
post_remove() {
echo -e "NOTE: mysql database was not removed. To remove run:\nmysql -u root -e 'drop database mythconverg;'"
}
op=$1
shift
$op $*
|