home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / var / lib / dpkg / info / ubuntu-docs.postinst < prev    next >
Encoding:
Text File  |  2006-08-29  |  557 b   |  23 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 >/dev/null 2>&1
  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.   ;;
  20. esac
  21.  
  22. exit 0
  23.