diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:08:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:08:26 +0000 |
commit | 59845ba9b3df5df775cf8c5a65d30375b984e3c7 (patch) | |
tree | 6c5c6d57676acf601505f35e53194e5e7a86f0c3 /tests/laptop | |
parent | Initial commit. (diff) | |
download | tasksel-upstream/3.68+deb11u1.tar.xz tasksel-upstream/3.68+deb11u1.zip |
Adding upstream version 3.68+deb11u1.upstream/3.68+deb11u1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/laptop')
-rwxr-xr-x | tests/laptop | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/laptop b/tests/laptop new file mode 100755 index 0000000..c205f4d --- /dev/null +++ b/tests/laptop @@ -0,0 +1,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 |