Your IP : 216.73.216.48


Current Path : /usr/lib64/ConsoleKit/scripts/
Upload File :
Current File : //usr/lib64/ConsoleKit/scripts/ck-system-stop

#!/bin/sh

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