AlaK4X
Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64



Your IP : 18.117.151.127


Current Path : /usr/lib/pm-utils/sleep.d/
Upload File :
Current File : //usr/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