File Manager

Current Path : /lib/pm-utils/sleep.d/
Upload File :
Current File : //lib/pm-utils/sleep.d/000record-status

#!/bin/sh
#
# Record the current operation to allow failure detection.

STAMPFILE="/var/lib/pm-utils/status"

case "$1" in
       hibernate|suspend)
	       mkdir -p `dirname $STAMPFILE`
               echo "$1" >"$STAMPFILE"
               ;;
       thaw|resume) 
               rm -f "$STAMPFILE"
               ;;
esac


File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com