From: blogic Date: Mon, 11 Nov 2013 12:19:10 +0000 (+0000) Subject: base-files: add a generic wps button handler X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=a4c4bbef35ce65d7d331609cff19e9a05650bed4;p=openwrt.git base-files: add a generic wps button handler Signed-off-by: John Crispin git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38726 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/base-files/files/etc/rc.button/wps b/package/base-files/files/etc/rc.button/wps new file mode 100755 index 0000000000..c913d5bab3 --- /dev/null +++ b/package/base-files/files/etc/rc.button/wps @@ -0,0 +1,6 @@ +#!/bin/sh + +for dir in /var/run/hostapd-*; do + [ -d "$dir" ] || continue + hostapd_cli -p "$dir" wps_pbc +done