#!/bin/sh -e

# Install laptop-detect on architectures know to have laptops
case "$(archdetect)" in
	i386/*|amd64/*|powerpc/*)
	    apt-install laptop-detect
	    ;;
esac
