repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Check for SYS/GL during library init. Reason is that
[AROS.git]
/
workbench
/
network
/
WirelessManager
/
wpa_supplicant
/
examples
/
60_wpa_supplicant
blob
39bd8e09b5899e0f99d566e36fc1a25e83388320
1
#!/bin/sh
2
3
# /etc/pm/sleep.d/60_wpa_supplicant
4
# Action script to notify wpa_supplicant of pm-action events.
5
6
PATH
=/
sbin
:/
usr
/
sbin
:/
bin
:/
usr
/
bin
7
8
WPACLI
=
wpa_cli
9
10
case
"
$1
"
in
11
suspend
|hibernate
)
12
$WPACLI
suspend
13
;;
14
resume|thaw
)
15
$WPACLI
resume
16
;;
17
esac
18
19
exit
0