OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
pm-utils
/
sleep.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/21/2019 03:49:18 PM
rwxr-xr-x
📄
000record-status
323 bytes
11/11/2019 09:57:56 PM
rwxr-xr-x
📄
95hdparm-apm
2.3 KB
02/22/2018 01:51:46 PM
rwxr-xr-x
Editing: 000record-status
Close
#!/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