mwan3: fix shellcheck warning SC2166

Replace -o boolean check with ||.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
Florian Eckert 2020-07-14 11:47:15 +02:00
parent 644d9a25df
commit c0fdfaa174
1 changed files with 1 additions and 1 deletions

View File

@ -1067,7 +1067,7 @@ mwan3_report_iface_status()
IPT="$IPT6"
fi
if [ -z "$id" -o -z "$device" ]; then
if [ -z "$id" ] || [ -z "$device" ]; then
result="offline"
elif [ -n "$($IP rule | awk '$1 == "'$(($id+1000)):'"')" ] && \
[ -n "$($IP rule | awk '$1 == "'$(($id+2000)):'"')" ] && \