Merge branch 'update-copy-user-wpasupplicant' into 'master'

Remove comment character in awk command

See merge request kalilinux/build-scripts/kali-arm!327
This commit is contained in:
Steev Klimaszewski
2022-04-14 16:16:00 +00:00

View File

@@ -7,7 +7,12 @@ fi
if [ -f /boot/wpa_supplicant.conf ]; then
ssid=$(awk -F = '{if($0 ~ /ssid/) print $2}' /boot/wpa_supplicant.conf | tr -d '"')
# look for the plaintext ASCII psk in the file as a comment.
psk=$(awk -F = '{if($0 ~ /#psk/) print $2}' /boot/wpa_supplicant.conf | tr -d '"')
# If we did not find the plaintext psk in the comment use the psk as configured.
if [ "${psk}" == "" ]; then
psk=$(awk -F = '{if($0 ~ /psk/) print $2}' /boot/wpa_supplicant.conf | tr -d '"')
fi
wifi_dev="wlan0"
if [ -n "$ssid" ] && [ -n "$psk" ] && [ ! "${#psk}" -lt "8" ]; then
if [ -x "$(command -v nmcli)" ]; then