mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-18 21:16:54 +00:00
7 lines
108 B
Bash
Executable File
7 lines
108 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for dir in /var/run/hostapd-*; do
|
|
[ -d "$dir" ] || continue
|
|
hostapd_cli -p "$dir" wps_pbc
|
|
done
|