blob: 5f911e410998dfdaad40395c5956f3deabd983cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# arg 1: the new package version
post_install() {
echo
echo
echo "As is with no guarantee, please do not file any bug reports against this package."
}
post_upgrade(){
echo
echo
echo "As is with no guarantee, please do not file any bug reports against this package."
}
# 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 $*
|