mwan3: fix shellcheck warning SC2166
Replace -o boolean check with ||. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
parent
644d9a25df
commit
c0fdfaa174
1 changed files with 1 additions and 1 deletions
|
@ -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)):'"')" ] && \
|
||||
|
|
Loading…
Reference in a new issue