summaryrefslogtreecommitdiff
path: root/tools/linux/ck-system-suspend
blob: cf9a0561cd351e25e66d14404ee22db9c66cd398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

#Try for common tools
if [ -x "/sbin/pm-suspend" ] ; then
	/sbin/pm-suspend
	exit $?
elif [ -x "/usr/sbin/pm-suspend" ] ; then
	/usr/sbin/pm-suspend
	exit $?
else
	exit 1
fi