1
0
Fork 0
tasksel/tests/laptop
Daniel Baumann 7a3972d44e
Adding upstream version 3.80.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 22:39:52 +02:00

13 lines
259 B
Bash
Executable file

#!/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