Skip to content

Commit

Permalink
hostapd: remove some bashisms
Browse files Browse the repository at this point in the history
"[[" is a bash extension for test. As the ash-implementation is not
fully compatible we drop its usage.

Signed-off-by: Sven Roederer <devel-sven@geroedel.de>
[remove shebang, slightly facelift commit title/message]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
  • Loading branch information
SvenRoederer authored and adschm committed Jan 26, 2020
1 parent bad59fd commit 3519bf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package/network/services/hostapd/files/hostapd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ wpa_supplicant_prepare_interface() {

_w_mode="$mode"

[[ "$mode" = adhoc ]] && {
[ "$mode" = adhoc ] && {
ap_scan="ap_scan=2"
}

Expand Down Expand Up @@ -810,7 +810,7 @@ wpa_supplicant_add_network() {
local scan_ssid="scan_ssid=1"
local freq wpa_key_mgmt

[[ "$_w_mode" = "adhoc" ]] && {
[ "$_w_mode" = "adhoc" ] && {
append network_data "mode=1" "$N$T"
[ -n "$freq" ] && wpa_supplicant_set_fixed_freq "$freq" "$htmode"
[ "$noscan" = "1" ] && append network_data "noscan=1" "$N$T"
Expand All @@ -820,7 +820,7 @@ wpa_supplicant_add_network() {
[ "$_w_driver" = "nl80211" ] || append wpa_key_mgmt "WPA-NONE"
}

[[ "$_w_mode" = "mesh" ]] && {
[ "$_w_mode" = "mesh" ] && {
json_get_vars mesh_id mesh_fwding mesh_rssi_threshold
[ -n "$mesh_id" ] && ssid="${mesh_id}"

Expand Down

0 comments on commit 3519bf4

Please sign in to comment.