blob: c56fee4dc944e08382e873de68fdddbe28f854f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#Try for common tools
if [ -x "/sbin/acpiconf" ] ; then
/sbin/acpiconf -s 4
exit $?
elif [ -x "/usr/sbin/acpiconf" ] ; then
/usr/sbin/acpiconf -s 4
exit $?
else
exit 1
fi
|