summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/8021x2
-rw-r--r--src/connections/wireless2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/8021x b/src/8021x
index 9c45f6f..b3cc2a0 100644
--- a/src/8021x
+++ b/src/8021x
@@ -55,7 +55,7 @@ stop_wpa()
wpa_reconfigure() {
local INTERFACE=$1
- wpa_cli -p "$WPA_CTRL_PATH" -i "$INTERFACE" reconfigure
+ wpa_cli -p "$WPA_CTRL_PATH" -i "$INTERFACE" reconfigure &> /dev/null
return $?
}
diff --git a/src/connections/wireless b/src/connections/wireless
index 143276b..0389ea6 100644
--- a/src/connections/wireless
+++ b/src/connections/wireless
@@ -8,6 +8,7 @@ wireless_up() {
load_profile "$PROFILE"
# Default settings
+ WPA_CTRL_PATH=/run/wpa_supplicant
SECURITY=${SECURITY:-none}
WPA_DRIVER=${WPA_DRIVER:-nl80211,wext}
@@ -21,7 +22,6 @@ wireless_up() {
stop_wpa "$INTERFACE"
# Start wpa_supplicant
- WPA_CTRL_PATH=/run/wpa_supplicant
if [[ "$SECURITY" = "wpa-config" ]]; then
WPA_CONF="${WPA_CONF:-/etc/wpa_supplicant.conf}"
# Use defined control path (FS#24949)