blob: abe069fa4b1d3cc8194dcedb55d5d41523ddfbad (
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() {
gen_is_xml.py
chown mythtv.mythtv $MYTHHOME/.huludesktop
echo "Set your screen width and height in ~/.huludesktop to avoid a segfault."
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
gen_is_xml.py
echo "Set your screen width and height in ~/.huludesktop to avoid a segfault."
}
post_remove() {
gen_is_xml.py
}
. /usr/MythVantage/bin/install_functions.sh
home_check
op=$1
shift
$op $*
|