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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-07-26
|
222 b
|
13 lines
#!/bin/sh
# Causes a task to be selected if the machine appears to be a laptop.
if [ "$NEW_INSTALL" ]; then
if laptop-detect; then
exit 2 # mark for install
else
exit 3 # do not mark for install
fi
else
exit 3
fi