home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / tasksel / tests / laptop < prev    next >
Encoding:
Text File  |  2006-07-26  |  222 b   |  13 lines

  1. #!/bin/sh
  2. # Causes a task to be selected if the machine appears to be a laptop.
  3.  
  4. if [ "$NEW_INSTALL" ]; then
  5.     if laptop-detect; then
  6.         exit 2 # mark for install
  7.     else
  8.         exit 3 # do not mark for install
  9.     fi
  10. else
  11.     exit 3
  12. fi
  13.