OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
988
/
usr
/
lib
/
pm-utils
/
sleep.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/04/2025 04:37:49 PM
rwxr-xr-x
📄
60_wpa_supplicant
267 bytes
01/16/2022 08:51:29 PM
rwxr-xr-x
Editing: 60_wpa_supplicant
Close
#!/bin/sh # /etc/pm/sleep.d/60_wpa_supplicant # Action script to notify wpa_supplicant of pm-action events. PATH=/sbin:/usr/sbin:/bin:/usr/bin WPACLI=wpa_cli case "$1" in suspend|hibernate) $WPACLI suspend ;; resume|thaw) $WPACLI resume ;; esac exit 0