ACC SHELL

Path : /usr/lib/ConsoleKit/scripts/
File Upload :
Current File : //usr/lib/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

ACC SHELL 2018