From cfb31e844c39089046de1fc7021d5dedef14c145 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 6 May 2021 12:55:05 +0200 Subject: netwatch-notify: support dynamic address update --- netwatch-notify | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'netwatch-notify') diff --git a/netwatch-notify b/netwatch-notify index 9cb99bb..50441a9 100644 --- a/netwatch-notify +++ b/netwatch-notify @@ -33,6 +33,21 @@ :set $Metric ($NetwatchNotify->$HostName); } + :if ([ :typeof ($HostInfo->"resolve") ] = "str") do={ + :do { + :local Resolve [ :resolve ($HostInfo->"resolve") ]; + :if ($Resolve != $HostVal->"host") do={ + $LogPrintExit2 info $0 ("Name '" . $HostInfo->"resolve" . [ $IfThenElse ($HostInfo->"resolve" != \ + $HostInfo->"hostname") ("' for host '" . $HostInfo->"hostname") "" ] . \ + "' resolves to different address " . $Resolve . ", updating.") false; + / tool netwatch set host=$Resolve $Host; + } + } on-error={ + $LogPrintExit2 warning $0 ("Resolving name '" . $HostInfo->"resolve" . [ $IfThenElse ($HostInfo->"resolve" != \ + $HostInfo->"hostname") ("' for host '" . $HostInfo->"hostname") "" ] . "' failed.") false; + } + } + :if ($HostVal->"status" = "up") do={ :local Count ($Metric->"count"); :if ($Count > 0) do={ -- cgit v1.2.3-54-g00ecf