home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mime-support.postinst < prev    next >
Encoding:
Text File  |  2008-06-19  |  457 b   |  23 lines

  1. #! /bin/sh -e
  2.  
  3.  
  4. #if [ "$1" = "configure" ]; then
  5. #fi
  6.  
  7.  
  8. # Remove the old status directory (and any orphaned install-mime program)
  9. rm -fr /var/lib/mime
  10. rm -f  /usr/sbin/install-mime
  11.  
  12.  
  13. # Use "see" as alternative for "view"
  14. update-alternatives \
  15.     --install /usr/bin/view view /usr/bin/see 1 \
  16.     --slave /usr/share/man/man1/view.1.gz view.1.gz /usr/share/man/man1/see.1.gz
  17.  
  18.  
  19. # Run the update program
  20. if [ -x /usr/sbin/update-mime ]; then
  21.     update-mime
  22. fi
  23.