Browse Source

mwan3: fix logical/typo bug in mwan3rtmon

This bug was introduced since dd206b7d0b
mwan3_remon_ipv4 and mwan3_remon_ipv6 is command to run not a variable
I add some comments on them hopefully people will notice it

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
lilik-openwrt-22.03
Chen Minqiang 6 years ago
parent
commit
a004d07632
3 changed files with 8 additions and 4 deletions
  1. +1
    -1
      net/mwan3/Makefile
  2. +4
    -0
      net/mwan3/files/lib/mwan3/mwan3.sh
  3. +3
    -3
      net/mwan3/files/usr/sbin/mwan3rtmon

+ 1
- 1
net/mwan3/Makefile View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=mwan3 PKG_NAME:=mwan3
PKG_VERSION:=2.7.11
PKG_VERSION:=2.7.12
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_MAINTAINER:=Florian Eckert <fe@dev.tdt.de> PKG_MAINTAINER:=Florian Eckert <fe@dev.tdt.de>
PKG_LICENSE:=GPLv2 PKG_LICENSE:=GPLv2


+ 4
- 0
net/mwan3/files/lib/mwan3/mwan3.sh View File

@ -32,6 +32,8 @@ MM_BLACKHOLE=""
MMX_UNREACHABLE="" MMX_UNREACHABLE=""
MM_UNREACHABLE="" MM_UNREACHABLE=""
# return true(=0) if has any mwan3 interface enabled
# otherwise return false
mwan3_rtmon_ipv4() mwan3_rtmon_ipv4()
{ {
local tid=1 local tid=1
@ -61,6 +63,8 @@ mwan3_rtmon_ipv4()
return $ret return $ret
} }
# return true(=0) if has any mwan3 interface enabled
# otherwise return false
mwan3_rtmon_ipv6() mwan3_rtmon_ipv6()
{ {
local tid=1 local tid=1


+ 3
- 3
net/mwan3/files/usr/sbin/mwan3rtmon View File

@ -25,14 +25,14 @@ main() {
sleep 3 sleep 3
while true; do while true; do
mwan3_lock "service" "mwan3rtmon" mwan3_lock "service" "mwan3rtmon"
[ mwan3_remon_ipv4 = "1" ] || \
[ mwan3_rtmon_ipv6 = "1" ] && break
mwan3_rtmon_ipv4 || mwan3_rtmon_ipv6
ret=$?
mwan3_unlock "service" "mwan3rtmon" mwan3_unlock "service" "mwan3rtmon"
[ "$ret" = "0" ] || break
[ "$rtmon_interval" = "0" ] && break [ "$rtmon_interval" = "0" ] && break
sleep "$rtmon_interval" & sleep "$rtmon_interval" &
wait wait
done done
mwan3_unlock "service" "mwan3rtmon"
} }
main "$@" main "$@"

Loading…
Cancel
Save