diff options
author | John Crispin <john@openwrt.org> | 2014-04-12 21:22:17 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-04-12 21:22:17 +0000 |
commit | 3bc77db5f58e331fc524019d37f4a1c9eb82e2e9 (patch) | |
tree | 7dbba76368c83f07bcd72fef9baed8deaa992868 /package/network/services/hostapd/files | |
parent | fca3f32fe86b4b76d4006c7c1bee4a4defbd2c8f (diff) | |
download | upstream-3bc77db5f58e331fc524019d37f4a1c9eb82e2e9.tar.gz upstream-3bc77db5f58e331fc524019d37f4a1c9eb82e2e9.tar.bz2 upstream-3bc77db5f58e331fc524019d37f4a1c9eb82e2e9.zip |
802.11s: fix authsae support in netifd
This patch implements support for 802.11s protected mesh wireless networks (using authsae) in the netifd framework.
Until meshd-nl80211 implements a proper -P option for the PID file, this uses shell backgrounding in order to be able to get the PID for the process.
Signed-off-by: Vittorio Gambaletta <openwrt@vittgam.net>
SVN-Revision: 40497
Diffstat (limited to 'package/network/services/hostapd/files')
-rw-r--r-- | package/network/services/hostapd/files/netifd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/files/netifd.sh b/package/network/services/hostapd/files/netifd.sh index 12326698c5..1372b5ade7 100644 --- a/package/network/services/hostapd/files/netifd.sh +++ b/package/network/services/hostapd/files/netifd.sh @@ -586,5 +586,5 @@ wpa_supplicant_run() { } hostapd_common_cleanup() { - killall hostapd wpa_supplicant + killall hostapd wpa_supplicant meshd-nl80211 } |