rotate-ntp: RouterOS v7 path syntax

This commit is contained in:
Christian Hesse 2022-05-10 15:14:34 +02:00
parent b90585f690
commit 735df85b45

View file

@ -17,7 +17,7 @@
:local Ntp1; :local Ntp1;
:local Ntp2; :local Ntp2;
:if ([ / system ntp client get enabled ] != true) do={ :if ([ /system/ntp/client/get enabled ] != true) do={
$LogPrintExit2 warning $0 ("NTP client is not enabled!") true; $LogPrintExit2 warning $0 ("NTP client is not enabled!") true;
} }
@ -29,4 +29,4 @@
} }
$LogPrintExit2 info $0 ("Updating NTP servers to " . $Ntp1 . " and " . $Ntp2) false; $LogPrintExit2 info $0 ("Updating NTP servers to " . $Ntp1 . " and " . $Ntp2) false;
/ system ntp client set servers=($Ntp1, $Ntp2); /system/ntp/client/set servers=($Ntp1, $Ntp2);