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
  if /usr/bin/ls $MYTHHOME/.mythtv/cache/themecache/LinHES* 1> /dev/null 2>&1
  then
    echo "Clearing themecache and quitting mythfrontend."
    /usr/bin/rm -rf $MYTHHOME/.mythtv/cache/themecache/LinHES*
    killall mythfrontend
  fi
}

post_upgrade() {
  post_install
}