openwrtv3/package/network/services/hostapd/files/wps-hotplug.sh
2012-10-10 12:32:29 +00:00

6 lines
160 B
Bash

if [ "$ACTION" = "pressed" -a "$BUTTON" = "wps" ]; then
for dir in /var/run/hostapd-*; do
[ -d "$dir" ] || continue
hostapd_cli -p "$dir" wps_pbc
done
fi