mwan3: fix shellcheck warning SC2166
Replace -o boolean check with ||.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit c0fdfaa174
)
This commit is contained in:
parent
c0b111feab
commit
7d0f2cdb63
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