mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-18 10:54:03 -05:00
18 lines
259 B
Plaintext
18 lines
259 B
Plaintext
|
#!/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
|