home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / totem-xine.prerm < prev    next >
Encoding:
Text File  |  2007-04-05  |  573 b   |  30 lines

  1. #! /bin/sh
  2. # prerm script for totem-xine
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. case "$1" in
  9.     remove|upgrade|deconfigure)
  10.         update-alternatives --quiet --remove gnome-video-thumbnailer /usr/bin/totem-video-thumbnailer
  11.         ;;
  12.     failed-upgrade)
  13.         ;;
  14.  
  15.     *)
  16.         echo "prerm called with unknown argument \`$1'" >&2
  17.     exit 1
  18.     ;;
  19.      
  20. esac
  21.  
  22. # Automatically added by dh_gconf
  23. if [ "$1" = remove ] || [ "$1" = upgrade ]; then
  24.     gconf-schemas --unregister totem-handlers.schemas totem-video-thumbnail.schemas totem.schemas 
  25. fi
  26. # End automatically added section
  27.  
  28.  
  29. exit 0
  30.