mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 16:58:41 -05:00
36d1343a4b
There is no point in inhibiting suspend in case wpa_supplicant is not running and as such, return success unconditionally from this script.
20 lines
267 B
Bash
Executable File
20 lines
267 B
Bash
Executable File
#!/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
|