This commit is contained in:
ghartmann 2021-08-31 13:36:19 +02:00 committed by GitHub
parent 48539a13df
commit 14fec39371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -396,7 +396,7 @@ check_interfaces(){
# Wi-Fi interface with AP mode available. # Wi-Fi interface with AP mode available.
for iface in $IFACES; for iface in $IFACES;
do do
if echo "$iface" | grep -Eq "(wlan[0-9]|wl[a-z0-9]{20})"; then if echo "$iface" | grep -Eq "(wlan[0-9]|wl[a-z0-9]{2,20})"; then
config="$(ifconfig $iface)" # Get the iface logic configuration config="$(ifconfig $iface)" # Get the iface logic configuration
if echo "$config" | grep -qv "inet "; then # Test if not currently connected if echo "$config" | grep -qv "inet "; then # Test if not currently connected
hw="$(iw $iface info | grep wiphy | cut -d" " -f2)" # Get the iface hardware id. hw="$(iw $iface info | grep wiphy | cut -d" " -f2)" # Get the iface hardware id.