File: laptop

package info (click to toggle)
tasksel 3.85
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,636 kB
  • sloc: perl: 703; sh: 219; makefile: 133
file content (13 lines) | stat: -rwxr-xr-x 259 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# Causes a task to be selected if the machine appears to be a laptop.

if [ "$NEW_INSTALL" ]; then
	if which laptop-detect >/dev/null 2>&1 && \
		laptop-detect; then
		exit 0 # hide; install
	else
		exit 1 # hide; do not install
	fi
else
	exit 3
fi