linuxOS_AP05/debian/test/usr/sbin/acpi_available

13 lines
112 B
Plaintext
Raw Permalink Normal View History

2025-09-26 01:40:02 +00:00
#!/bin/sh -e
if [ "$@" ]; then
echo "Usage: $0"
exit 2
fi
if [ -d /proc/acpi/ ]; then
exit 0
fi
exit 1