/sbin/acpi_available is in powermgmt-base 1.31+nmu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh -e
if [ "$@" ]; then
echo "Usage: $0"
exit 2
fi
if [ -d /proc/acpi/ ]; then
exit 0
fi
exit 1
|