version 0.7.0b

This commit is contained in:
garywill
2023-10-04 11:43:35 +08:00
parent 957ed25f07
commit 63cd88b5fc
2 changed files with 34 additions and 10 deletions

4
lnxrouter Normal file → Executable file
View File

@@ -1,6 +1,6 @@
#!/bin/bash
VERSION=0.6.7
VERSION=0.7.0b
PROGNAME="$(basename $0)"
export LC_ALL=C
@@ -1558,7 +1558,7 @@ daemonizing_check(){
check_wifi_settings() {
if ! ( which iw > /dev/null 2>&1 && iw dev $WIFI_IFACE info > /dev/null 2>&1 ); then
echo "WARN: Can't use 'iw' to operate interfce '$WIFI_IFACE', trying 'iwconfig' (not as good as 'iw') ..." >&2
echo "WARN: Can't use 'iw' to operate interfce '$WIFI_IFACE', trying 'iwconfig' (not as good as 'iw') ... (Did you spell the interface name right?)" >&2
USE_IWCONFIG=1
fi