/sbin/apm_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 | #!/bin/sh -e
if [ "$@" ]; then
echo "Usage: $0"
exit 2
fi
# APM support was removed from kernel 2.6.40 in 2011.
exit 1
|