# arg 1: the new package version post_install() { if [ ! -e $MYTHHOME/.mediaserv ] then ln -s /myth/mediaserv $MYTHHOME/.mediaserv fi if [ ! -e /myth/mediaserv/media/tv ] then ln -s /myth/pretty /myth/mediaserv/media/tv fi if [ ! -e /myth/mediaserv/media/video ] then ln -s /myth/video /myth/mediaserv/media/video fi chown -R mythtv.mythtv /myth/mediaserv add_service.sh mediaserv sv start mediaserv } # arg 1: the new package version # arg 2: the old package version post_upgrade() { post_install $1 } # arg 1: the old package version post_remove() { sv stop mediaserv remove_service.sh mediaserv rm -fr $MYTHHOME/.mediaserv rm -fr /myth/mediaserv } op=$1 shift $op $*