Your IP : 216.73.216.48


Current Path : /hdd/hdd11/lib64/ConsoleKit/scripts/
Upload File :
Current File : /hdd/hdd11/lib64/ConsoleKit/scripts/ck-system-suspend

#!/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