/usr/lib/ConsoleKit/scripts
NameSizeModeActions
ck-system-restart1910755editdlrm
ck-system-stop1910755editdlrm
Edit: /usr/lib/ConsoleKit/scripts/ck-system-restart (191B)
#!/bin/sh #Try for common tools if [ -x "/sbin/shutdown" ] ; then /sbin/shutdown -r now exit $? elif [ -x "/usr/sbin/shutdown" ] ; then /usr/sbin/shutdown -r now exit $? else exit 1 fi