mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
12 lines
194 B
Bash
12 lines
194 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ "$ACTION" = "pressed" -a "$BUTTON" = "wps" ]; then
|
||
|
cd /var/run/hostapd
|
||
|
for socket in *; do
|
||
|
[ -S "$socket" ] || continue
|
||
|
hostapd_cli -i "$socket" wps_pbc
|
||
|
done
|
||
|
fi
|
||
|
|
||
|
return 0
|