home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / tasksel / info / desktop.preinst next >
Encoding:
Text File  |  2006-07-26  |  487 b   |  14 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. # None of these packages are strictly needed, but they make X
  5. # autoconfiguration work better. Need to install them before X is
  6. # preconfigured. Note that they are also listed as part of the task, which
  7. # will take care of their removal when the task is removed.
  8. for pkg in discover1 xresprobe; do
  9.     if apt-cache show "$pkg" >/dev/null 2>&1 &&
  10.        ! dpkg --get-selections | grep "$pkg" | grep -q install; then
  11.         apt-get -q -y -f install $pkg >/dev/null || true
  12.     fi
  13. done
  14.