aboutsummaryrefslogtreecommitdiffstats
path: root/package/hostapd/files/wps-hotplug.sh
blob: 058264a8dbbcffdebd038e5d9028da50c6592f25 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

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