From b3de1fad3459aa886b3ca3e1f1f91066ab0730b6 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 14 Jun 2022 21:17:01 +0200 Subject: drop script 'rotate-ntp' For RouterOS 6.x a separate package 'ntp' exists. This adds server functionality, but allows ip addresses for the client only. I added the script 'rotate-ntp' to update addresses from names... Now with RouterOS 7.x there's no extra package and the limitation does no longer exist. So let's just drop the script. This adds migration code, that... * removes the script from configuration * removes a scheduler from configuration * sets the configured ntp pool name for ntp client --- rotate-ntp | 39 +-------------------------------------- 1 file changed, 1 insertion(+), 38 deletions(-) (limited to 'rotate-ntp') diff --git a/rotate-ntp b/rotate-ntp index 4446cba..9374129 100644 --- a/rotate-ntp +++ b/rotate-ntp @@ -1,39 +1,2 @@ #!rsc by RouterOS -# RouterOS script: rotate-ntp -# Copyright (c) 2013-2022 Christian Hesse -# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md -# -# rotate the ntp servers -# https://git.eworm.de/cgit/routeros-scripts/about/doc/rotate-ntp.md - -:local 0 "rotate-ntp"; -:global GlobalFunctionsReady; -:while ($GlobalFunctionsReady != true) do={ :delay 500ms; } - -:global NtpPool; -:global RotateNtpResolveFailed; - -:global LogPrintExit2; - -:local Ntp1; -:local Ntp2; - -:if ([ /system/ntp/client/get enabled ] != true) do={ - $LogPrintExit2 warning $0 ("NTP client is not enabled!") true; -} - -:do { - :set Ntp1 [ :resolve ("0." . $NtpPool) ]; - :set Ntp2 [ :resolve ("1." . $NtpPool) ]; - :set RotateNtpResolveFailed false; -} on-error={ - :if ($RotateNtpResolveFailed != true) do={ - :set RotateNtpResolveFailed true; - $LogPrintExit2 warning $0 ("Resolving NTP server failed.") true; - } else={ - $LogPrintExit2 debug $0 ("Resolving NTP server failed, again.") true; - } -} - -$LogPrintExit2 info $0 ("Updating NTP servers to " . $Ntp1 . " and " . $Ntp2) false; -/system/ntp/client/set servers=($Ntp1, $Ntp2); +# dummy for removal -- cgit v1.2.3-54-g00ecf