Browse Source

Merge pull request #8312 from TDT-AG/pr/20190227-mwan3

mwan3: fix disconnected event generation in mwan3track
lilik-openwrt-22.03
Hannu Nyman 6 years ago
committed by GitHub
parent
commit
31c78b0548
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions
  1. +1
    -1
      net/mwan3/Makefile
  2. +0
    -4
      net/mwan3/files/usr/sbin/mwan3track

+ 1
- 1
net/mwan3/Makefile View File

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


+ 0
- 4
net/mwan3/files/usr/sbin/mwan3track View File

@ -221,11 +221,7 @@ main() {
if [ $score -eq $up ]; then
echo "offline" > /var/run/mwan3track/$1/STATUS
echo "0" > /var/run/mwan3track/$1/UPTIME
echo "$(get_uptime)" > /var/run/mwan3track/$1/DOWNTIME
$LOG notice "Interface $1 ($2) is offline"
env -i ACTION=ifdown INTERFACE=$1 DEVICE=$2 /sbin/hotplug-call iface
env -i ACTION="disconnected" INTERFACE="$1" DEVICE="$2" /sbin/hotplug-call iface
score=0
fi
else


Loading…
Cancel
Save