home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
- # prerm script for totem-xine
- #
- # see: dh_installdeb(1)
-
- set -e
-
- case "$1" in
- remove|upgrade|deconfigure)
- update-alternatives --quiet --remove gnome-video-thumbnailer /usr/bin/totem-video-thumbnailer
- ;;
- failed-upgrade)
- ;;
-
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-
- esac
-
- # Automatically added by dh_gconf
- if [ "$1" = remove ] || [ "$1" = upgrade ]; then
- gconf-schemas --unregister totem-handlers.schemas totem-video-thumbnail.schemas totem.schemas
- fi
- # End automatically added section
-
-
- exit 0
-