blob: e8fcaeaebf7478fcd8f318df0de349cbf3f51128 (
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 3
exit $?
elif [ -x "/usr/sbin/acpiconf" ] ; then
/usr/sbin/acpiconf -s 3
exit $?
else
exit 1
fi
|