Tasksel-devuan/tasksel-3.83/tests/laptop

14 lines
259 B
Plaintext
Raw Normal View History

2023-09-21 12:18:51 +00:00
#!/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