home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ubuntu-docs.postinst < prev    next >
Encoding:
Text File  |  2009-04-28  |  792 b   |  30 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4. # Automatically added by dh_scrollkeeper
  5. if [ "$1" = "configure" ] && which scrollkeeper-update >/dev/null 2>&1; then
  6.     scrollkeeper-update -q
  7. fi
  8. # End automatically added section
  9.  
  10.  
  11. case "$1" in
  12.   configure)
  13.     update-alternatives \
  14.       --install /usr/share/ubuntu-artwork/home/index.html \
  15.       firefox-homepage /usr/share/ubuntu-artwork/home/firefox-index.html 40 \
  16.       --slave /usr/share/ubuntu-artwork/home/locales \
  17.       firefox-homepage-locales /usr/share/ubuntu-artwork/home/locales-ubuntu
  18.  
  19.         link=/usr/share/gnome/help/libs
  20.         if [ -d "$link" ] && ! [ -L "$link" ] \
  21.            && dpkg --compare-versions "$2" lt-nl 9.04.7
  22.         then
  23.                 rmdir "$link"
  24.                 ln -s ../../ubuntu-docs/libs "$link"
  25.         fi
  26.   ;;
  27. esac
  28.  
  29. exit 0
  30.