blob: f2934c706c631ff878a74163ea9e2a04209a362e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# arg 1: the new package version
post_install() {
mysql -D mythconverg -u mythtv -pmythtv < /usr/LH/sql/romdb-20051116-02.sql
}
# arg 1: the new package version
# arg 2: the old package version
#post_upgrade() {
#}
# arg 1: the old package version
#post_remove() {
#}
op=$1
shift
$op $*
|