prerm is in mythbuntu-common 0.67.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/sh
case "$1" in
remove|purge)
release=$(lsb_release -c -s)
RMBLDS="`cat /usr/share/mythbuntu/plugins/mythbuntu-repos.db | grep $release | cut -f 2`"
for version in $RMBLDS
do
## Fixes for 0.21 and 0.22 PPA's
if [ "$version" = "0.21" ]; then
version="fixes-0.21"
elif [ "$version" = "0.22" ]; then
version="trunk-0.22"
elif [ "$version" = "0.24.x" ]; then
version="0.24"
fi
apt-add-repository -r -y ppa:mythbuntu/$version || true
done
apt-add-repository -r -y ppa:mythbuntu/testing || true
apt-add-repository -r -y ppa:mythbuntu/xmltv || true
;;
esac
|