mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-14 17:00:18 +00:00
7 lines
108 B
Plaintext
7 lines
108 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
for dir in /var/run/hostapd-*; do
|
||
|
[ -d "$dir" ] || continue
|
||
|
hostapd_cli -p "$dir" wps_pbc
|
||
|
done
|