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