1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-22 08:38:28 +02:00

netifd/config.sh: remove some bashism (usage of [[)

"[[" 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>
This commit is contained in:
Sven Roederer 2019-12-25 18:42:13 +01:00 committed by Adrian Schmutzler
parent a20069e1af
commit bc357aaa2b

View File

@ -12,7 +12,7 @@ find_config() {
json_load "$(ifstatus $interface)"
json_get_var ifdev device
json_get_var ifl3dev l3_device
if [[ "$device" = "$ifdev" ]] || [[ "$device" = "$ifl3dev" ]]; then
if [ "$device" = "$ifdev" ] || [ "$device" = "$ifl3dev" ]; then
echo "$interface"
exit 0
else