aboutsummaryrefslogtreecommitdiffstats
path: root/stage2
diff options
context:
space:
mode:
authorChristian Decker <[email protected]>2019-12-05 16:08:04 +0100
committerXECDesign <[email protected]>2019-12-05 15:08:04 +0000
commit18c3cebe94c99daf80dcdeaa8bc0f9202de3a943 (patch)
tree0b1ba808af51c6a8384d1d8d271e0169f13393f4 /stage2
parent8bdbbfb099ecac884a901572d126b0fe47de5d95 (diff)
configure unprotected wifi when WPA_PASSWORD is unset (#357)
Diffstat (limited to 'stage2')
-rwxr-xr-xstage2/02-net-tweaks/01-run.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/stage2/02-net-tweaks/01-run.sh b/stage2/02-net-tweaks/01-run.sh
index 3ba2ef9..154e515 100755
--- a/stage2/02-net-tweaks/01-run.sh
+++ b/stage2/02-net-tweaks/01-run.sh
@@ -14,6 +14,14 @@ if [ -v WPA_ESSID ] && [ -v WPA_PASSWORD ]; then
on_chroot <<EOF
wpa_passphrase "${WPA_ESSID}" "${WPA_PASSWORD}" >> "/etc/wpa_supplicant/wpa_supplicant.conf"
EOF
+elif [ -v WPA_ESSID ]; then
+cat >> "${ROOTFS_DIR}/etc/wpa_supplicant/wpa_supplicant.conf" << EOL
+
+network={
+ ssid="${WPA_ESSID}"
+ key_mgmt=NONE
+}
+EOL
fi
# Disable wifi on 5GHz models