blob: c506cbe11c5540eba9bad91bb4852347934bf394 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
. /usr/MythVantage/bin/install_functions.sh
home_check
if /usr/bin/ls $MYTHHOME/.mythtv/themecache/LinHES* 1> /dev/null 2>&1
then
echo "Clearing themecache and quitting mythfrontend."
/usr/bin/rm -rf $MYTHHOME/.mythtv/themecache/LinHES*
killall mythfrontend
fi
}
post_upgrade() {
post_install
}
|