home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / lib / tasksel / tests / laptop < prev    next >
Encoding:
Text File  |  2007-03-14  |  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.