mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 03:19:44 +01:00
6 lines
108 B
Bash
Executable file
6 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
|