OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2582
/
usr
/
lib
/
pm-utils
/
sleep.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
04/29/2025 04:07:52 PM
rwxr-xr-x
📄
60_wpa_supplicant
267 bytes
08/07/2019 01:25:25 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