wpa_supplicant also works on wired interfaces, Gentoo #198722.
This commit is contained in:
parent
69a040bf85
commit
4888f3c97d
@ -71,7 +71,11 @@ wpa_supplicant_pre_start() {
|
|||||||
wpac=/bin/wpa_cli
|
wpac=/bin/wpa_cli
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_is_wireless || return 0
|
eval opts=\$wpa_supplicant_${IFVAR}
|
||||||
|
case " ${opts} " in
|
||||||
|
*" -Dwired "*) ;;
|
||||||
|
*) _is_wireless || return 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
# We don't configure wireless if we're being called from
|
# We don't configure wireless if we're being called from
|
||||||
# the background unless we're not currently running
|
# the background unless we're not currently running
|
||||||
@ -86,7 +90,6 @@ wpa_supplicant_pre_start() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
save_options "SSID" ""
|
save_options "SSID" ""
|
||||||
eval opts=\$wpa_supplicant_${IFVAR}
|
|
||||||
ebegin "Starting wpa_supplicant on" "${IFVAR}"
|
ebegin "Starting wpa_supplicant on" "${IFVAR}"
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user