From 0238bcef19e5cde07e5dbf55a77a3e85bf0446c3 Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Sun, 20 Feb 2022 08:22:05 +0300 Subject: [PATCH] utils/watchcat: restart failure time after network restart Without this change these settings: Mode: Restart Interface Period: 30s Check Interval: 5s will do ping every 30s, if all pings are fail then it try to take action every 5 second. After apply this patch watchcat will try to send ping every 5 second in next 30 sec before take action if all pings are fail. This is important for wireless uplinks like 3G/4G that need some time to establish connection. Signed-off-by: Rozhuk Ivan --- utils/watchcat/Makefile | 2 +- utils/watchcat/files/watchcat.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/watchcat/Makefile b/utils/watchcat/Makefile index bd0beafff1..6f2e4cade1 100644 --- a/utils/watchcat/Makefile +++ b/utils/watchcat/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=watchcat PKG_VERSION:=1 -PKG_RELEASE:=13 +PKG_RELEASE:=14 PKG_MAINTAINER:=Roger D PKG_LICENSE:=GPL-2.0 diff --git a/utils/watchcat/files/watchcat.sh b/utils/watchcat/files/watchcat.sh index 49911848ef..9ee0f6d568 100644 --- a/utils/watchcat/files/watchcat.sh +++ b/utils/watchcat/files/watchcat.sh @@ -140,6 +140,8 @@ watchcat_monitor_network() { watchcat_restart_all_network fi /etc/init.d/watchcat start + # Restart timer cycle. + time_lastcheck_withinternet="$time_now" } done