From 1a188f8f725186b2c2d6d7c67e79c2ff5ea9d05e Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 18 Aug 2010 12:22:15 -0500 Subject: fix bug 266395 Do not stop wpa_supplicant or wpa_cli if they are in the background. Thanks to Slava Gorbunov for the patch. --- net/wpa_supplicant.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'net') diff --git a/net/wpa_supplicant.sh b/net/wpa_supplicant.sh index f4ca7d62..24ecdb13 100644 --- a/net/wpa_supplicant.sh +++ b/net/wpa_supplicant.sh @@ -183,9 +183,11 @@ wpa_supplicant_post_stop() fi if yesno "${IN_BACKGROUND}"; then - # Only stop wpa_supplicant if it's not the controlling daemon - ! service_started_daemon "${RC_SVCNAME}" "${wpas}" 1 + # Don't stop wpa_supplicant & wpa_cli if in background + return 0 fi + # Only stop wpa_supplicant if it's not the controlling daemon + ! service_started_daemon "${RC_SVCNAME}" "${wpas}" 1 [ $? != 0 ] && return 0 local pidfile="/var/run/wpa_cli-${IFACE}.pid" -- cgit v1.2.3