#!/bin/sh -e

# Source debconf library.
. /usr/share/debconf/confmodule

#DEBHELPER#

# show message
if [ ! -d /proc/acpi ] ; then
	db_input high acpid/noacpi || true
	db_go || true
fi

exit 0
