blob: f7351227abae9c89909c187a4edb827a3a9fded7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
echo ">>> Some initial-tuning-data files have been installed under"
echo ">>> /usr/share/dvb-utils/scan/"
echo ">>> you can use them to generate your channel.conf file"
}
op=$1
shift
$op $*
|