diff options
-rwxr-xr-x | contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/gen_bssid.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/gen_bssid.sh b/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/gen_bssid.sh index 492dfe8e5..e05300a0d 100755 --- a/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/gen_bssid.sh +++ b/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/gen_bssid.sh @@ -11,7 +11,9 @@ community=$2 # Try to get BSSID from profile first config_load profile_$community config_get bssid bssidscheme $channel -config_get bssid_all bssidscheme "all" && bssid="$bssid_all" +if [ -z "$bssid" ]; then + config_get bssid bssidscheme "all" +fi if [ -z "$bssid" ]; then case $channel in |