You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is an issue in the bootstrap script 20-networking.sh.
Line 109, the WiFi is configured with NET_SSID and NET_WPAPSK and should be replaced with NET_WIFI_SSID and NET_WIFI_PSK.
Moreover, the condition line 97 is wrong if [ -z "$NET_WIFI_SSID" ] && [ -z "$NET_WIFI_PSK" ] ; then
must be replaced by if [ ! -z "$NET_WIFI_SSID" ] && [ ! -z "$NET_WIFI_PSK" ] ; then
should be replaced either by
printf "
ctrl_interface=/run/wpa_supplicant
ctrl_interface_group=wheel
update_config=1
eapol_version=1
ap_scan=1
fast_reauth=1
" > ${ETC_DIR}/wpa_supplicant/wpa_supplicant-wlan0.conf
or by chroot_exec printf "
ctrl_interface=/run/wpa_supplicant
ctrl_interface_group=wheel
update_config=1
eapol_version=1
ap_scan=1
fast_reauth=1
" > /etc/wpa_supplicant/wpa_supplicant-wlan0.conf
Best regards
The text was updated successfully, but these errors were encountered:
Hi all,
I think there is an issue in the bootstrap script 20-networking.sh.
Line 109, the WiFi is configured with
NET_SSID
andNET_WPAPSK
and should be replaced with NET_WIFI_SSID and NET_WIFI_PSK.Moreover, the condition line 97 is wrong
if [ -z "$NET_WIFI_SSID" ] && [ -z "$NET_WIFI_PSK" ] ; then
must be replaced by
if [ ! -z "$NET_WIFI_SSID" ] && [ ! -z "$NET_WIFI_PSK" ] ; then
The section
should be replaced either by
printf "
ctrl_interface=/run/wpa_supplicant
ctrl_interface_group=wheel
update_config=1
eapol_version=1
ap_scan=1
fast_reauth=1
" > ${ETC_DIR}/wpa_supplicant/wpa_supplicant-wlan0.conf
or by
chroot_exec printf "
ctrl_interface=/run/wpa_supplicant
ctrl_interface_group=wheel
update_config=1
eapol_version=1
ap_scan=1
fast_reauth=1
" > /etc/wpa_supplicant/wpa_supplicant-wlan0.conf
Best regards
The text was updated successfully, but these errors were encountered: