mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
mwan3: fix shellcheck warning SC2166
Replace -o boolean check with ||. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
@@ -1067,7 +1067,7 @@ mwan3_report_iface_status()
|
|||||||
IPT="$IPT6"
|
IPT="$IPT6"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$id" -o -z "$device" ]; then
|
if [ -z "$id" ] || [ -z "$device" ]; then
|
||||||
result="offline"
|
result="offline"
|
||||||
elif [ -n "$($IP rule | awk '$1 == "'$(($id+1000)):'"')" ] && \
|
elif [ -n "$($IP rule | awk '$1 == "'$(($id+1000)):'"')" ] && \
|
||||||
[ -n "$($IP rule | awk '$1 == "'$(($id+2000)):'"')" ] && \
|
[ -n "$($IP rule | awk '$1 == "'$(($id+2000)):'"')" ] && \
|
||||||
|
|||||||
Reference in New Issue
Block a user